-
Notifications
You must be signed in to change notification settings - Fork 70
/
pyproject.toml
37 lines (31 loc) · 1.03 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
[build-system]
requires = ["setuptools"]
[project]
name = "us"
description = "US state meta information and other fun stuff"
readme = "README.md"
urls.Homepage = "https://github.com/unitedstates/python-us/"
urls."Issue tracker" = "https://github.com/unitedstates/python-us/issues"
requires-python = ">=3.8"
dynamic = ["version"]
authors = [{ name = "Jeremy Carbaugh", email = "[email protected]" }]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
license = { file = "LICENSE"}
dependencies = ['jellyfish']
[project.scripts]
states = "us.cli.states:main"
[project.optional-dependencies]
dev = ['flake8', 'black', 'pytest', 'pytz']
[tool.setuptools.dynamic]
version = { attr = "us.version.__version__" }
[tool.black]
line-length = 120
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'