We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e374fc commit dcc23ccCopy full SHA for dcc23cc
MANIFEST.in
pyproject.toml
@@ -0,0 +1,29 @@
1
+[build-system]
2
+requires = ["hatchling"]
3
+build-backend = "hatchling.build"
4
+
5
+[project]
6
+name = "Flask-PyMemcache"
7
+version = "0.0.6"
8
+description = "pymemcache integration for Flask"
9
+readme = "README.rst"
10
+license = "MIT"
11
+authors = [
12
+ { name = "Inada Naoki", email = "[email protected]" },
13
+]
14
+dependencies = [
15
+ "Flask",
16
+ "pymemcache>=1.3.4",
17
+ "six",
18
19
+dev-dependencies = [
20
+ "pytest",
21
22
23
+[project.urls]
24
+Homepage = "https://github.com/KLab/Flask-PyMemcache"
25
26
+[tool.hatch.build.targets.sdist]
27
+include = [
28
+ "/flask_pymemcache",
29
setup.cfg
setup.py
0 commit comments