-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
77 lines (48 loc) · 1.31 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env python3
from setuptools import setup
name = "permanent"
version = "0.1.0"
licence = "GPLv3"
author = "QC-Devs"
author_email = "email@address.com"
url = "https://permanent.qcdevs.org/"
description = "Functions to compute the permanent of arbitrary matrices."
long_description = open("README.md", "r", encoding="utf-8").read()
classifiers = [
"Environment :: Console",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
# "Topic :: Science/Engineering :: Molecular Science",
# Figure out what to put here before publishing the package
]
install_requires = [
"numpy>=1.13",
]
extras_require = {
"test": ["pytest"],
"docs": ["sphinx", "sphinx_rtd_theme"],
}
packages = [
"permanent",
"permanent.test",
]
package_data = {
"permanent": ["permanent.so"],
}
if __name__ == "__main__":
setup(
name=name,
version=version,
license=licence,
author=author,
author_email=author_email,
url=url,
description=description,
long_description=long_description,
classifiers=classifiers,
install_requires=install_requires,
extras_require=extras_require,
packages=packages,
package_data=package_data,
include_package_data=True,
)