-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
69 lines (62 loc) · 1.75 KB
/
setup.cfg
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
[metadata]
name = starmatrix
version = attr: starmatrix.__version__
author = Juanjo Bazán
author_email = [email protected]
license = MIT
description = Modelling nucleosynthesis of galactic chemical elements using Q-Matrices
keywords =
galaxies
models
astrophysics
url = https://github.com/xuanxu/starmatrix
download_url = https://github.com/xuanxu/starmatrix
long_description = file: README.rst
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Intended Audience :: Education
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Astronomy
Topic :: Scientific/Engineering :: Physics
[options]
python_requires = >=3.7
package_dir=
=src
packages = find:
install_requires =
pyyaml>=5.4.1
numpy>=1.20
scipy>=1.7
zip_safe = False
[options.packages.find]
where = src
[options.entry_points]
console_scripts = starmatrix = starmatrix.cli:main
[options.extras_require]
dev =
pytest>=6.2
pytest-mock>=3.6
pytest-cov>=3.0
[options.package_data]
* =
sample_input/*
[pycodestyle]
max-line-length = 160
statistics = True
exclude = zzzzz*, build, .git, _build, .pytest_cache, __pycache__, dist
[tool:pytest]
python_files = test_*.py
addopts = -v --cov=starmatrix
testpaths = src/starmatrix/tests