-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
32 lines (30 loc) · 1.04 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
import setuptools
with open("README.md", "r") as f:
readme = f.read()
setuptools.setup(
name="abeliantensors",
version="0.1.0",
author="Markus Hauru",
author_email="[email protected]",
description="Library for Abelian symmetry preserving tensors.",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/mhauru/abeliantensors",
packages=setuptools.find_packages("src"),
package_dir={"": "src"},
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
],
keywords=["tensor", "tensor networks", "linear algebra"],
install_requires=["scipy>=1.0.0"],
extras_require={
"tests": ["ncon", "pytest", "pytest-randomly", "coverage"],
"demo": ["ncon", "timeit", "matplotlib", "seaborn"],
"doc": ["sphinx", "sphinx_rtd_theme", "recommonmark"],
},
python_requires=">=3.6",
)