-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
47 lines (44 loc) · 1.39 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[tool.poetry]
name = "geofeed-validator"
version = "0.6.1"
description = "Validator library for self-published geo feeds"
license = "AGPLv3+"
authors = ["Stephan Peijnik-Steinwender <[email protected]>"]
readme = "README.rst"
homepage = "https://github.com/anexia-it/geofeed-validator"
repository = "https://github.com/anexia-it/geofeed-validator"
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries :: Python Modules'
]
exclude = ["tests"]
include = [
"changelog.rst",
"COPYING",
"README.rst",
]
[tool.poetry.dependencies]
python = ">=3.6.2,<4"
pycountry = ">=20.7.3"
netaddr = ">=0.8.0"
[tool.poetry.dev-dependencies]
coverage = ">=5.5.0"
pytest = ">=6.2.5"
coveralls = "^3.2.0"
pre-commit = "^2.15.0"
black = "^21.9b0"
isort = "^5.9.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"