|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=68"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "steflib" |
| 7 | +version = "0.1.0" |
| 8 | +description = "Python implementation of STEF (Simple Token-Efficient Format)" |
| 9 | +readme = "README.md" |
| 10 | +license = {text = "MIT"} |
| 11 | +authors = [ |
| 12 | + {name = "Nigel Small"} |
| 13 | +] |
| 14 | +requires-python = ">=3.9" |
| 15 | +classifiers = [ |
| 16 | + "Development Status :: 4 - Beta", |
| 17 | + "Intended Audience :: Developers", |
| 18 | + "License :: OSI Approved :: MIT License", |
| 19 | + "Programming Language :: Python :: 3", |
| 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 | + "Topic :: Software Development :: Libraries", |
| 26 | +] |
| 27 | + |
| 28 | +[project.urls] |
| 29 | +Repository = "https://github.com/technige/stef" |
| 30 | +Documentation = "https://stef.nige.tech" |
| 31 | + |
| 32 | +[tool.setuptools] |
| 33 | +py-modules = ["steflib"] |
| 34 | +package-dir = {"" = "src"} |
| 35 | + |
| 36 | +[tool.pytest.ini_options] |
| 37 | +testpaths = ["tests"] |
| 38 | +addopts = "-v" |
| 39 | + |
| 40 | +[tool.tox] |
| 41 | +env_list = ["py39", "py310", "py311", "py312", "py313"] |
| 42 | + |
| 43 | +[tool.tox.env_run_base] |
| 44 | +deps = ["pytest"] |
| 45 | +commands = [["pytest"]] |
0 commit comments