-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 787 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 787 Bytes
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
from setuptools import setup, find_packages
import os, sys
version = {}
with open(os.path.join(sys.path[0], "pyADiff/version.py")) as f:
exec(f.read(), version)
with open(os.path.join(sys.path[0], "README.md")) as f:
readme = f.read()
setup(
name='pyADiff',
version=version['__version__'],
author='Tamme Claus',
author_email='tamme.claus@gmail.com',
description='A simple, pure python algorithmic differentiation package',
long_description=readme,
long_description_content_type="text/markdown",
url='https://github.com/tam724/pyADiff',
include_package_data=True,
license="GNU GPLv3 ",
packages=find_packages(exclude=('examples', 'tests', 'doc')),
python_requires='>=3.6',
install_requires=[
'numpy>=1.17'
]
)