-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 731 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
from setuptools import setup
setup(
name="AutoDiffX",
version="0.2",
packages=['ad'],
# metadata to display on PyPI
author="William Fu",
author_email="wfu@college.harvard.edu",
description="Lightweight Package for Automatic Differentiation",
license="MIT",
keywords="automatic differentiation, differentiation",
url="https://github.com/CS207-Project-Team-1/cs207-FinalProject/",
project_urls={
"Bug Tracker": "https://github.com/CS207-Project-Team-1/cs207-FinalProject/",
"Documentation": "https://github.com/CS207-Project-Team-1/cs207-FinalProject/",
"Source Code": "https://github.com/CS207-Project-Team-1/cs207-FinalProject/",
}
)