... | ... |
@@ -7,7 +7,7 @@ module = "qsim" |
7 | 7 |
author = "Joseph Weston" |
8 | 8 |
author-email = "joseph@weston.cloud" |
9 | 9 |
home-page = "https://github.com/jbweston/qsim" |
10 |
-requires-python=">=3.6" |
|
10 |
+requires-python=">=3.11" |
|
11 | 11 |
description-file="README.md" |
12 | 12 |
keywords = "quantum simulator" |
13 | 13 |
classifiers = [ |
... | ... |
@@ -17,8 +17,7 @@ classifiers = [ |
17 | 17 |
"Intended Audience :: Science/Research", |
18 | 18 |
"Topic :: Scientific/Engineering", |
19 | 19 |
"Topic :: Scientific/Engineering :: Physics", |
20 |
- "Programming Language :: Python :: 3.8", |
|
21 |
- "Programming Language :: Python :: 3.9", |
|
20 |
+ "Programming Language :: Python :: 3.11", |
|
22 | 21 |
] |
23 | 22 |
requires = [ |
24 | 23 |
"numpy", |
... | ... |
@@ -28,13 +27,12 @@ requires = [ |
28 | 27 |
test = [ |
29 | 28 |
"pytest", |
30 | 29 |
"pytest-cov", |
31 |
- "pytest-flake8", |
|
30 |
+ "pytest-ruff", |
|
32 | 31 |
"pytest-mypy", |
33 | 32 |
"pytest-black", |
34 | 33 |
"hypothesis[numpy]", |
35 | 34 |
"tox", |
36 |
- "flake8-per-file-ignores", |
|
37 |
- "flake8>=3.7.2", # https://github.com/pycqa/flake8/issues/668 |
|
35 |
+ "ruff", |
|
38 | 36 |
] |
39 | 37 |
docs = [ |
40 | 38 |
"sphinx", |
... | ... |
@@ -17,8 +17,8 @@ classifiers = [ |
17 | 17 |
"Intended Audience :: Science/Research", |
18 | 18 |
"Topic :: Scientific/Engineering", |
19 | 19 |
"Topic :: Scientific/Engineering :: Physics", |
20 |
- "Programming Language :: Python :: 3.6", |
|
21 |
- "Programming Language :: Python :: 3.7", |
|
20 |
+ "Programming Language :: Python :: 3.8", |
|
21 |
+ "Programming Language :: Python :: 3.9", |
|
22 | 22 |
] |
23 | 23 |
requires = [ |
24 | 24 |
"numpy", |
... | ... |
@@ -34,6 +34,7 @@ test = [ |
34 | 34 |
"hypothesis[numpy]", |
35 | 35 |
"tox", |
36 | 36 |
"flake8-per-file-ignores", |
37 |
+ "flake8>=3.7.2", # https://github.com/pycqa/flake8/issues/668 |
|
37 | 38 |
] |
38 | 39 |
docs = [ |
39 | 40 |
"sphinx", |
... | ... |
@@ -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 |
+] |