-
Notifications
You must be signed in to change notification settings - Fork 74
/
pyproject.toml
70 lines (62 loc) · 1.89 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools >=61"]
build-backend = "setuptools.build_meta"
[project]
name = "country_converter"
authors = [
{name = "Konstantin Stadler", email = "[email protected]"},
]
description = "The country converter (coco) - a Python package for converting country names between different classifications schemes"
readme = "README.md"
keywords = ["country", "ISO 3166"]
dynamic = ["version"]
license = {text = "GNU General Public License v3 (GPLv3)"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
]
requires-python = ">=3.9"
dependencies = [
"pandas >=1.0",
]
[project.optional-dependencies]
dev = ["country_converter[lint,test]"]
lint = [
"black >=22.3.0",
"isort >=5.5.2",
]
test = [
"coveralls",
"pytest >=5.4.0",
"pytest-black",
"pytest-cov >=2.7.0",
"pytest-datadir",
"pytest-mypy",
]
[project.scripts]
coco = "country_converter.country_converter:main"
[project.urls]
Repository = "https://github.com/IndEcol/country_converter"
[tool.setuptools]
packages = ["country_converter"]
[tool.setuptools.package-data]
country_converter = ["country_data.tsv"]
[tool.setuptools.dynamic]
version = {attr = "country_converter.version.__version__"}
[tool.isort]
profile = "black"
known_first_party = ["country_converter"]