Skip to content

Commit

Permalink
Created setup.py for pip installation
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Laasri committed Dec 8, 2018
1 parent 0b454c3 commit f1ebe3b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions setup.py
@@ -0,0 +1,25 @@
import setuptools

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(name='autodiff-py',
version='1.0',
description='Automatic Differentiation package',
author='Ellie Han, Julien Laasri, Brian Lin, Bhaven Patel',
long_description=long_description,
long_description_content_type="text/markdown",
packages=['autodiff'],
install_requires=[
'numpy',
'scipy',
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
url="https://github.com/cs207FinalProjectGroup/cs207-FinalProject",
license="MIT",
)

0 comments on commit f1ebe3b

Please sign in to comment.