-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
61 lines (46 loc) · 1.06 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
[project]
name = "country-emoji"
authors = [{ name = "Nik Sergievskii", email = "nnonexistent@gmail.com" }]
description = "Converts between country names, ISO 3166-1 codes and flag emojis."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = []
dynamic = ['version']
[project.optional-dependencies]
test = [
"pytest",
]
dev = [
"mypy",
"blue",
"isort",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.urls]
"Homepage" = "https://github.com/Nnonexistent/country-emoji"
"Bug Tracker" = "https://github.com/Nnonexistent/country-emoji/issues"
[tool.hatch.build]
exclude = [
".gitignore",
".github",
"*.code-workspace",
".python-version",
]
[tool.hatch.version]
path = "src/country_emoji/__init__.py"
[tool.isort]
profile = "black"
line_length = 119
src_paths = ['src']
[tool.blue]
line-length = 119
[tool.mypy]
check_untyped_defs = true
strict = true