... | ... |
@@ -13,6 +13,7 @@ keywords = "quantum simulator" |
13 | 13 |
classifiers = [ |
14 | 14 |
"License :: OSI Approved :: MIT License", |
15 | 15 |
"Development Status :: 1 - Planning", |
16 |
+ "Operating System :: OS Independent", |
|
16 | 17 |
"Intended Audience :: Science/Research", |
17 | 18 |
"Topic :: Scientific/Engineering", |
18 | 19 |
"Topic :: Scientific/Engineering :: Physics", |
... | ... |
@@ -10,7 +10,15 @@ home-page = "https://github.com/jbweston/qsim" |
10 | 10 |
requires-python=">=3.6" |
11 | 11 |
description-file="README.md" |
12 | 12 |
keywords = "quantum simulator" |
13 |
-classifiers = ["License :: OSI Approved :: MIT License"] |
|
13 |
+classifiers = [ |
|
14 |
+ "License :: OSI Approved :: MIT License", |
|
15 |
+ "Development Status :: 1 - Planning", |
|
16 |
+ "Intended Audience :: Science/Research", |
|
17 |
+ "Topic :: Scientific/Engineering", |
|
18 |
+ "Topic :: Scientific/Engineering :: Physics", |
|
19 |
+ "Programming Language :: Python :: 3.6", |
|
20 |
+ "Programming Language :: Python :: 3.7", |
|
21 |
+] |
|
14 | 22 |
requires = [ |
15 | 23 |
"numpy", |
16 | 24 |
] |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,29 @@ |
1 |
+[build-system] |
|
2 |
+requires = ["flit"] |
|
3 |
+build-backend = "flit.buildapi" |
|
4 |
+ |
|
5 |
+[tool.flit.metadata] |
|
6 |
+module = "qsim" |
|
7 |
+author = "Joseph Weston" |
|
8 |
+author-email = "joseph@weston.cloud" |
|
9 |
+home-page = "https://github.com/jbweston/qsim" |
|
10 |
+requires-python=">=3.6" |
|
11 |
+description-file="README.md" |
|
12 |
+keywords = "quantum simulator" |
|
13 |
+classifiers = ["License :: OSI Approved :: MIT License"] |
|
14 |
+requires = [ |
|
15 |
+ "numpy", |
|
16 |
+] |
|
17 |
+ |
|
18 |
+[tool.flit.metadata.requires-extra] |
|
19 |
+test = [ |
|
20 |
+ "pytest", |
|
21 |
+ "pytest-cov", |
|
22 |
+ "pytest-flake8", |
|
23 |
+ "hypothesis", |
|
24 |
+ "tox", |
|
25 |
+ "flake8-per-file-ignores", |
|
26 |
+] |
|
27 |
+doc = [ |
|
28 |
+ "sphinx", |
|
29 |
+] |