Skip to content

Commit 20d6f4a

Browse files
committed
Move to pyproject and uv
1 parent 50ea9ce commit 20d6f4a

File tree

3 files changed

+39
-29
lines changed

3 files changed

+39
-29
lines changed

MANIFEST.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
recursive-include apispec-flask-restful *.py
2+
include MANIFEST.in
3+
include AUTHORS.rst
4+
include README.rst

pyproject.toml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
[project]
2+
name = "apispec-flask-restful"
3+
version = "0.2.0"
4+
description = "Flask-RESTful plugin for apispec."
5+
authors = [
6+
{name="theirix", email="[email protected]"}
7+
]
8+
license = {file = "LICENSE.txt"}
9+
readme = "README.rst"
10+
classifiers = [
11+
"Development Status :: 4 - Beta",
12+
"Topic :: Utilities",
13+
"Programming Language :: Python",
14+
'Intended Audience :: Developers',
15+
'License :: OSI Approved :: MIT License'
16+
]
17+
keywords = ["apispec", "swagger", "openapi", "specification", "documentation", "spec", "rest api"]
18+
requires-python = ">=3.8"
19+
20+
dependencies = [
21+
"apispec[yaml] >= 1.0",
22+
"Flask-RESTful"
23+
]
24+
25+
[project.urls]
26+
Homepage = "https://github.com/theirix/apispec-flask-restful"
27+
Repository = "https://github.com/theirix/apispec-flask-restful"
28+
29+
[dependency-groups]
30+
dev = [
31+
"pytest>=8.3.4",
32+
"pylint>=2.6.0",
33+
"pytest-cov>=4",
34+
"black~=23.0"
35+
]

setup.py

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

0 commit comments

Comments
 (0)