Skip to content

Commit 13c453f

Browse files
authored
INTPYTHON-380 Switch to hatchling backend (#171)
1 parent 71621b6 commit 13c453f

File tree

4 files changed

+48
-58
lines changed

4 files changed

+48
-58
lines changed

MANIFEST.in

Lines changed: 0 additions & 7 deletions
This file was deleted.

flask_pymongo/_version.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
__version__ = '3.0.0.dev0'

pyproject.toml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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+
]

setup.py

Lines changed: 0 additions & 51 deletions
This file was deleted.

0 commit comments

Comments
 (0)