Skip to content

Commit

Permalink
INTPYTHON-380 Switch to hatchling backend (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 authored Jan 13, 2025
1 parent 71621b6 commit 13c453f
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 58 deletions.
7 changes: 0 additions & 7 deletions MANIFEST.in

This file was deleted.

2 changes: 2 additions & 0 deletions flask_pymongo/_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

__version__ = '3.0.0.dev0'
46 changes: 46 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "Flask-PyMongo"
dynamic = ["version"]
description = "PyMongo support for Flask applications"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.9"
authors = [
{ name = "Dan Crosta", email = "[email protected]" },
]
classifiers = [
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"Flask>=3.0",
"PyMongo>=4.0",
]

[project.urls]
Download = "https://github.com/mongodb-labs/flask-pymongo/tags"
Homepage = "http://flask-pymongo.readthedocs.org/"

[tool.hatch.version]
path = "flask_pymongo/_version.py"

[tool.hatch.build.targets.sdist]
include = [
"/flask_pymongo",
]
51 changes: 0 additions & 51 deletions setup.py

This file was deleted.

0 comments on commit 13c453f

Please sign in to comment.