|
1 | 1 | [build-system] |
2 | 2 | requires = ["setuptools", "wheel", "Cython"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "pygambit" |
| 7 | +version = "16.3.0" |
| 8 | +description = "The package for computation in game theory" |
| 9 | +readme = "src/README.rst" |
| 10 | +requires-python = ">=3.9" |
| 11 | +license = "GPL-2.0-or-later" |
| 12 | +authors = [ |
| 13 | + {name = "Theodore Turocy", email = "ted.turocy@gmail.com"}, |
| 14 | + {name = "Rahul Savani", email = "rahul.savani@liverpool.ac.uk"} |
| 15 | +] |
| 16 | +keywords = ["game theory", "Nash equilibrium"] |
| 17 | +classifiers=[ |
| 18 | + "Development Status :: 5 - Production/Stable", |
| 19 | + "Intended Audience :: Science/Research", |
| 20 | + "Programming Language :: Python :: 3.9", |
| 21 | + "Programming Language :: Python :: 3.10", |
| 22 | + "Programming Language :: Python :: 3.11", |
| 23 | + "Programming Language :: Python :: 3.12", |
| 24 | + "Programming Language :: Python :: 3.13", |
| 25 | + "Programming Language :: Python :: Implementation :: CPython", |
| 26 | + "Topic :: Scientific/Engineering :: Mathematics" |
| 27 | +] |
| 28 | +dependencies = [ |
| 29 | + "numpy", |
| 30 | + "scipy", |
| 31 | +] |
| 32 | + |
| 33 | +[project.urls] |
| 34 | +Homepage = "https://www.gambit-project.org" |
| 35 | +Documentation = "https://gambitproject.readthedocs.io" |
| 36 | +Repository = "https://github.com/gambitproject/gambit.git" |
| 37 | +Issues = "https://github.com/gambitproject/gambit/issues" |
| 38 | +Changelog = "https://github.com/gambitproject/gambit/blob/master/ChangeLog" |
| 39 | + |
3 | 40 |
|
4 | 41 | [tool.ruff] |
5 | 42 | line-length = 99 |
@@ -33,3 +70,16 @@ indent-style = "space" |
33 | 70 |
|
34 | 71 | [tool.cython-lint] |
35 | 72 | max-line-length = 99 |
| 73 | + |
| 74 | + |
| 75 | +[tool.pytest.ini_options] |
| 76 | +addopts = "--strict-markers" |
| 77 | +markers = [ |
| 78 | + "nash_enummixed_strategy: tests of enummixed_solve in strategies", |
| 79 | + "nash_lcp_strategy: tests of lcp_solve in strategies", |
| 80 | + "nash_lcp_behavior: tests of lcp_solve in behaviors", |
| 81 | + "nash_lp_strategy: tests of lp_solve in strategies", |
| 82 | + "nash_lp_behavior: tests of lp_solve in behaviors", |
| 83 | + "nash: all tests of Nash equilibrium solvers", |
| 84 | + "slow: all time-consuming tests", |
| 85 | +] |
0 commit comments