forked from google/tangent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 795 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
28
29
30
from setuptools import find_packages
from setuptools import setup
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
lic = f.read()
with open('requirements.txt') as f:
reqs = list(f.read().strip().split('\n'))
setup(
name='tangent',
version='0.1.9',
description=('Automatic differentiation using source code transformation '
'for Python'),
long_description=readme,
author='Google Inc.',
author_email='alexbw@google.com',
url='https://github.com/google/tangent',
license=lic,
packages=find_packages(exclude=('tests')),
package_data={'':['README.md','LICENSE']},
keywords=[
'autodiff', 'automatic-differentiation', 'machine-learning',
'deep-learning'
],
install_requires=reqs,
)