|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools", "setuptools_scm"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | + |
| 6 | +[tool.setuptools.packages.find] |
| 7 | +where = ["datastock"] |
| 8 | +include = ["datastock*"] |
| 9 | +namespaces = false |
| 10 | + |
| 11 | + |
| 12 | +[tool.setuptools_scm] |
| 13 | +version_file = "datastock/_version.py" |
| 14 | + |
| 15 | + |
| 16 | +[tool.setuptools.dynamic] |
| 17 | +readme = {file = ["README.md"]} |
| 18 | +classifiers = {file = ["CLASSIFIERS.txt"]} |
| 19 | + |
| 20 | + |
1 | 21 | [project] |
2 | 22 | name = "datastock" |
3 | | -license = {file = "LICENSE"} |
4 | | -dynamic = ["version"] |
| 23 | +license = {text = "MIT"} |
| 24 | +dynamic = ["version", "readme", "classifiers"] |
5 | 25 | description = "Generic handler for multiple heterogenous numpy arrays and subclasses" |
6 | | -readme = "README.md" |
7 | | -requires-python = ">=3.6" |
8 | 26 | authors = [ |
9 | | - {name = "Didier VEZINET", email = "didier.vezinet@gmail.com"}, |
| 27 | + {name = "Didier VEZINET", email = "didier.vezinet@gmail.com"}, |
10 | 28 | ] |
11 | 29 | maintainers = [ |
12 | | - {name = "Didier VEZINET", email = "didier.vezinet@gmail.com"}, |
| 30 | + {name = "Didier VEZINET", email = "didier.vezinet@gmail.com"}, |
13 | 31 | ] |
14 | | -keywords = ["data", "analysis", "interactive", "heterogeneous arrays", "numpy", "Collection"] |
15 | | -classifiers = [ |
16 | | - # How mature is this project? Common values are |
17 | | - # 3 - Alpha |
18 | | - # 4 - Beta |
19 | | - # 5 - Production/Stable |
20 | | - "Development Status :: 5 - Production/Stable", |
21 | | - |
22 | | - # Indicate who your project is intended for |
23 | | - "Intended Audience :: Science/Research", |
24 | | - |
25 | | - # Specify the Python versions you support here. |
26 | | - "Programming Language :: Python :: 3", |
27 | | - "Programming Language :: Python :: 3.6", |
28 | | - "Programming Language :: Python :: 3.7", |
29 | | - "Programming Language :: Python :: 3.8", |
30 | | - "Programming Language :: Python :: 3.9", |
31 | | - "Programming Language :: Python :: 3.10", |
32 | | - "Programming Language :: Python :: 3.11", |
| 32 | +keywords = [ |
| 33 | + "data", "analysis", "interactive", "heterogeneous arrays", "numpy", "Collection", |
33 | 34 | ] |
| 35 | +requires-python = ">=3.8" |
34 | 36 | dependencies = [ |
35 | | - "numpy", |
36 | | - "scipy", |
37 | | - "matplotlib", |
38 | | - "astropy", |
| 37 | + "numpy", |
| 38 | + "scipy", |
| 39 | + "matplotlib", |
| 40 | + "PyQt5 ; platform_system != 'Windows'", |
| 41 | + # "PySide2; platform_system == 'Windows'", |
| 42 | + "astropy", |
39 | 43 | ] |
40 | 44 |
|
41 | 45 |
|
42 | | -[build-system] |
43 | | -requires = [ |
44 | | - "setuptools>=40.8.0, <64", |
45 | | - "wheel", |
46 | | - "Cython>=0.26", |
47 | | - "numpy", |
48 | | -] |
| 46 | +[project.urls] |
| 47 | +Homepage = "https://github.com/ToFuProject/datastock" |
| 48 | +Issues = "https://github.com/ToFuProject/datastock/issues" |
| 49 | + |
| 50 | + |
| 51 | +[project.entry-points."datastock"] |
| 52 | +datastock = "scripts.main:main" |
| 53 | + |
49 | 54 |
|
50 | 55 | [dependency-groups] |
51 | 56 | dev = [ |
52 | 57 | "pytest", |
53 | 58 | ] |
54 | 59 |
|
| 60 | + |
55 | 61 | [project.optional-dependencies] |
56 | 62 | linting = [ |
57 | 63 | 'ruff' |
58 | 64 | ] |
59 | 65 | formatting = [ |
60 | 66 | 'ruff' |
61 | 67 | ] |
62 | | - |
63 | | -[project.entry-points."datastock"] |
64 | | -datastock = "scripts.main:main" |
|
0 commit comments