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 4d28e1d commit aaebdceCopy full SHA for aaebdce
pyproject.toml
@@ -50,8 +50,12 @@ requires = [
50
]
51
build-backend = "setuptools.build_meta"
52
53
+[tool.setuptools]
54
+include-package-data = true
55
+packages = ["maxminddb"]
56
+
57
[tool.setuptools.package-data]
-maxminddb = ["py.typed"]
58
+maxminddb = ["extension.pyi", "py.typed"]
59
60
[tool.black]
61
# src is showing up in our GitHub linting builds. It seems to
setup.cfg
@@ -2,14 +2,3 @@
2
extend-ignore = E203
3
# black uses 88 : ¯\_(ツ)_/¯
4
max-line-length = 88
5
-
6
-[options]
7
-package_dir =
8
- maxminddb = maxminddb
9
-packages = maxminddb
10
-install_requires =
11
-include_package_data = True
12
-python_requires = >=3.9
13
14
-[options.package_data]
15
-maxminddb = extension.pyi; py.typed
0 commit comments