|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61.0"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "openpaygo" |
| 7 | +version = "0.5.5" |
| 8 | +description = "OpenPAYGO Python library" |
| 9 | +readme = { file = "README.md", content-type = "text/markdown" } |
| 10 | +requires-python = ">=3.6" |
| 11 | +license = { text = "MIT License" } |
| 12 | +keywords = ["paygo"] |
| 13 | + |
| 14 | +authors = [ |
| 15 | + { name = "EnAccess" } |
| 16 | +] |
| 17 | + |
| 18 | +classifiers = [ |
| 19 | + "Development Status :: 5 - Production/Stable", |
| 20 | + "Intended Audience :: Developers", |
| 21 | + "License :: OSI Approved :: Apache Software License", |
| 22 | + "Operating System :: Unix", |
| 23 | + "Operating System :: POSIX", |
| 24 | + "Operating System :: MacOS", |
| 25 | + "Operating System :: Microsoft :: Windows", |
| 26 | + "Programming Language :: Python", |
| 27 | + "Programming Language :: Python :: 3", |
| 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", |
| 33 | + "Programming Language :: Python :: 3.12", |
| 34 | + "Programming Language :: Python :: Implementation :: CPython", |
| 35 | + "Topic :: Utilities", |
| 36 | +] |
| 37 | + |
| 38 | +dependencies = [ |
| 39 | + "siphash>=0.0.1", |
| 40 | +] |
| 41 | + |
| 42 | +[dependency-groups] |
| 43 | +dev = [ |
| 44 | + "pytest>=7.0.1", |
| 45 | +] |
| 46 | + |
| 47 | +[project.urls] |
| 48 | +Homepage = "https://enaccess.github.io/OpenPAYGO-docs/" |
| 49 | +Documentation = "https://enaccess.github.io/OpenPAYGO-docs/" |
| 50 | +Changes = "https://github.com/EnAccess/OpenPAYGO-python/releases" |
| 51 | +Source = "https://github.com/EnAccess/OpenPAYGO-python/" |
| 52 | +Issues = "https://github.com/EnAccess/OpenPAYGO-python/issues" |
| 53 | + |
| 54 | +[tool.setuptools] |
| 55 | +include-package-data = true |
| 56 | +zip-safe = false |
| 57 | + |
| 58 | +[tool.setuptools.packages.find] |
| 59 | +where = ["."] |
| 60 | + |
1 | 61 | [tool.ruff] |
2 | | -# Add some rules to ruff's default: |
| 62 | +# Add some rules to ruff's default: |
3 | 63 | # - isort: https://docs.astral.sh/ruff/rules/#isort-i |
4 | 64 | # - pep8-naming: https://docs.astral.sh/ruff/rules/#pep8-naming-n |
5 | 65 | select = ["E", "F", "I", "N"] |
|
0 commit comments