Skip to content
Permalink
master
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="ECE69500",
version="0.1.0",
author="J.G. Makin",
author_email="jgmakin@purdue.edu",
description="Demos for ECE69500",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.itap.purdue.edu/jgmakin/ECE69500",
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'
],
)