]> gitweb.michael.orlitzky.com - geoipyupdate.git/blob - pyproject.toml
README.rst: reword a bullet point
[geoipyupdate.git] / pyproject.toml
1 [build-system]
2 requires = ["setuptools >= 61.0"]
3 build-backend = "setuptools.build_meta"
4
5 [project]
6 name = "geoipyupdate"
7 version = "0.0.1"
8 description = "Simple python replacement for the MaxMind geoipupdate program"
9 readme = "README.rst"
10 requires-python = ">=3.11"
11 keywords = ["maxmind", "geoip"]
12 license = { text = "AGPL-3.0-or-later" }
13 classifiers = [
14 "Development Status :: 5 - Production/Stable",
15 "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
16 "Programming Language :: Python :: 3",
17 "Topic :: Internet :: WWW/HTTP",
18 "Topic :: System :: Systems Administration",
19 "Topic :: Utilities"
20 ]
21 dependencies = ["requests"]
22
23 [tool.setuptools.packages.find]
24 where = ["src"]
25
26 [project.scripts]
27 geoipyupdate = "geoipyupdate:main"