-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (36 loc) · 1.27 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
38
39
40
41
from setuptools import setup
from os import path
from io import open
this_directory = path.abspath(path.dirname(__file__))
def readme():
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
return f.read()
with open(path.join(this_directory, 'requirements.txt'),
encoding='utf-8') as f:
requirements = f.read().splitlines()
setup(
name = 'apollo_ad',
packages = ['apollo_ad'],
version = '0.0.7',
license='MIT',
description = 'Auto Differentiation Tools',
long_description=readme(),
long_description_content_type='text/markdown',
author = 'Connor Capitolo, Haoxin Li, Kexin Huang, Chen Zhang',
author_email = '[email protected]',
url = 'https://github.com/West-Coast-Quaranteam/cs107-FinalProject',
keywords = ['Auto-diff'],
install_requires=requirements,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)