|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=42", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "Flask-Stupe" |
| 7 | +version = "4.4.0" |
| 8 | +description = "a.k.a. « Flask on steroids »" |
| 9 | +readme = "README.rst" |
| 10 | +authors = [ |
| 11 | + {name = "Guillaume Gelin"} |
| 12 | +] |
| 13 | +license = {text = "MIT"} |
| 14 | +classifiers = [ |
| 15 | + "Environment :: Web Environment", |
| 16 | + "Intended Audience :: Developers", |
| 17 | + "Operating System :: OS Independent", |
| 18 | + "Programming Language :: Python :: 3", |
| 19 | + "Programming Language :: Python :: 3.8", |
| 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 | + "Topic :: Internet :: WWW/HTTP :: Dynamic Content", |
| 25 | + "Topic :: Software Development :: Libraries :: Python Modules" |
| 26 | +] |
| 27 | +requires-python = ">=3.8" |
| 28 | +dependencies = [ |
| 29 | + "flask==2.1.3", |
| 30 | + "pymongo==4.2.0", |
| 31 | + "werkzeug==2.2.2", |
| 32 | + "marshmallow==3.17.0", |
| 33 | + "python-dateutil==2.9.0.post0", |
| 34 | +] |
| 35 | + |
| 36 | +[project.urls] |
| 37 | +Homepage = "https://github.com/numberly/flask-stupe" |
| 38 | + |
| 39 | +[tool.setuptools] |
| 40 | +packages = ["flask_stupe"] |
| 41 | +include-package-data = true |
| 42 | +zip-safe = false |
| 43 | +platforms = ["any"] |
| 44 | + |
| 45 | +[tool.pytest.ini_options] |
| 46 | +testpaths = ["tests"] |
| 47 | +python_files = "test_*.py" |
| 48 | + |
1 | 49 | [tool.commitizen]
|
2 | 50 | name = "cz_conventional_commits"
|
3 | 51 | tag_format = "$version"
|
|
0 commit comments