forked from jaberg/pyautodiff
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
27 lines (25 loc) · 863 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import sys
from setuptools import setup
if sys.version < '3':
raise ImportError(
'This version of autodiff only support Python 3+. Please check out an '
'earlier branch for use with Python 2.')
setup(
name='autodiff',
version='0.5',
maintainer='Lowin Data Company',
maintainer_email='[email protected]',
description=('Automatic differentiation for NumPy.'),
license='BSD-3',
url='https://github.com/LowinData/pyautodiff',
long_description = open('README.md').read(),
install_requires=['numpy', 'theano', 'meta'],
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
]
)