File tree Expand file tree Collapse file tree 5 files changed +47
-47
lines changed
Expand file tree Collapse file tree 5 files changed +47
-47
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ VERSION=$(shell git describe --exact-match HEAD 2>/dev/null)
1414
1515all : $(STAGPY ) info
1616
17- $(STAGPY ) : setup.py pyproject.toml
17+ $(STAGPY ) : setup.cfg pyproject.toml
1818 $(PY ) -m venv $(VENV_DIR )
1919 $(VPIP ) install -U pip
2020 $(VPIP ) install -e .
Original file line number Diff line number Diff line change 11[build-system ]
2- requires = [" setuptools>=45 " , " setuptools_scm>=6.2" , " wheel" ]
2+ requires = [" setuptools>=51 " , " setuptools_scm>=6.3 .2" , " wheel" ]
33build-backend = " setuptools.build_meta"
44
55[tool .setuptools_scm ]
Original file line number Diff line number Diff line change 1+ [metadata]
2+ name = stagpy
3+
4+ description = Tool for StagYY output files processing
5+ long_description = file: README.rst
6+
7+ url = https://github.com/StagPython/StagPy
8+
9+ author = Adrien Morison, Martina Ulvrova, Stéphane Labrosse
10+ 11+ maintainer = Adrien Morison
12+ maintainer_email = Adrien Morison
13+
14+ license = Apache
15+
16+ classifiers =
17+ Development Status :: 3 - Alpha
18+ Intended Audience :: Science/Research
19+ License :: OSI Approved :: Apache Software License
20+ Programming Language :: Python :: 3 :: Only
21+ Programming Language :: Python :: 3.7
22+ Programming Language :: Python :: 3.8
23+ Programming Language :: Python :: 3.9
24+ Programming Language :: Python :: 3.10
25+
26+ [options]
27+ python_requires = >=3.7
28+ include_package_data = true
29+ packages =
30+ stagpy
31+ install_requires =
32+ loam>=0.5.0,<0.6.0
33+ f90nml>=1.3.1
34+ setuptools_scm>=6.3.2
35+ numpy>=1.19
36+ scipy>=1.5
37+ pandas>=1.3
38+ h5py>=3.1
39+ matplotlib>=3.3
40+
41+ [options.entry_points]
42+ console_scripts =
43+ stagpy = stagpy.__main__:main
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ envlist =
77 flake8
88 mypy
99skip_missing_interpreters = True
10+ isolated_build = True
1011
1112[testenv]
1213deps =
2425 flake8>=3.8
2526 flake8-docstrings>=1.5
2627commands =
27- flake8 setup.py stagpy/ tests/
28+ flake8 stagpy/ tests/
2829
2930[testenv:mypy]
3031deps =
You can’t perform that action at this time.
0 commit comments