-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 810 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 810 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
import setuptools
from io import open
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
setuptools.setup(
name="cmdtools",
version="1.0.2",
author="Alexander Sikorski",
author_email="sikorski@zib.de",
description="A collection of tools relating to transfer operators",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/zib-cmd/cmdtools",
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
install_requires=['numpy', 'scipy', 'scikit-learn'],
extras_require={'slepc': ['slepc4py'], 'tests':['pytest','pytest-cov','pytest-benchmark']}
)