|
| 1 | +[build-system] |
| 2 | +requires = ["hatchling"] |
| 3 | +build-backend = "hatchling.build" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "Flask-PyMongo" |
| 7 | +dynamic = ["version"] |
| 8 | +description = "PyMongo support for Flask applications" |
| 9 | +readme = "README.md" |
| 10 | +license = { file="LICENSE" } |
| 11 | +requires-python = ">=3.9" |
| 12 | +authors = [ |
| 13 | + { name = "Dan Crosta", email = "[email protected]" }, |
| 14 | +] |
| 15 | +classifiers = [ |
| 16 | + "Environment :: Web Environment", |
| 17 | + "Framework :: Flask", |
| 18 | + "Intended Audience :: Developers", |
| 19 | + "License :: OSI Approved :: BSD License", |
| 20 | + "Operating System :: OS Independent", |
| 21 | + "Programming Language :: Python :: 3.9", |
| 22 | + "Programming Language :: Python :: Implementation :: CPython", |
| 23 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 24 | + "Programming Language :: Python :: 3.10", |
| 25 | + "Programming Language :: Python :: 3.11", |
| 26 | + "Programming Language :: Python :: 3.12", |
| 27 | + "Programming Language :: Python :: 3.13", |
| 28 | + "Topic :: Internet :: WWW/HTTP :: Dynamic Content", |
| 29 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 30 | +] |
| 31 | +dependencies = [ |
| 32 | + "Flask>=3.0", |
| 33 | + "PyMongo>=4.0", |
| 34 | +] |
| 35 | + |
| 36 | +[project.urls] |
| 37 | +Download = "https://github.com/mongodb-labs/flask-pymongo/tags" |
| 38 | +Homepage = "http://flask-pymongo.readthedocs.org/" |
| 39 | + |
| 40 | +[tool.hatch.version] |
| 41 | +path = "flask_pymongo/_version.py" |
| 42 | + |
| 43 | +[tool.hatch.build.targets.sdist] |
| 44 | +include = [ |
| 45 | + "/flask_pymongo", |
| 46 | +] |
0 commit comments