Skip to content
Permalink
6173fad77e
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
28 lines (26 sloc) 907 Bytes
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="ECE20002",
version="0.1.0",
author="J.G. Makin",
author_email="jgmakin@purdue.edu",
description="Demos for ECE20002",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.itap.purdue.edu/jgmakin/ECE20002",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
# "License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'numpy', 'scipy', 'bqplot', 'ipywidgets', 'voila',
'utils_jgm @ git+https://git@github.com/jgmakin/utils_jgm.git'
],
)