-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (33 loc) · 1.31 KB
/
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
31
32
33
34
35
36
37
#!/usr/bin/env python
import os
import setuptools
def get_long_description():
filename = os.path.join(os.path.dirname(__file__), 'README.md')
with open(filename) as f:
return f.read()
setuptools.setup(name='tsanley',
version='0.2.0',
description="Tsanley: Understanding Tensor Programs",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author='Nishant Sinha',
author_email='[email protected]',
url='https://github.com/ofnote/tsanley',
license='Apache 2.0',
platforms=['POSIX'],
packages=setuptools.find_packages(),
#entry_points={},
scripts=['scripts/tsa'],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
setup_requires=['sympy', 'typed_ast', 'typed-astunparse', 'easydict', 'astpretty', 'tsalib'],
install_requires=['sympy', 'typed_ast', 'typed-astunparse', 'easydict', 'astpretty', 'tsalib'],
)