-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
28 lines (26 loc) · 866 Bytes
/
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
import setuptools
with open("README.md", "r") as f:
readme = f.read()
setuptools.setup(
name="ncon",
version="2.0.0",
author="Markus Hauru",
author_email="markus@mhauru.org",
description="Tensor network contraction function for Python 3.",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/mhauru/ncon",
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 networks"],
install_requires=["numpy>=1.11.0"],
extras_require={"tests": ["pytest", "coverage", "pytest-cov"]},
python_requires=">=3.6",
)