-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
74 lines (62 loc) · 1.53 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
71
72
73
74
[build-system]
requires = ["setuptools>=61.1.1", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "addfips"
version = "0.4.1"
description = "Add county FIPS to tabular data"
readme = "README.md"
authors = [
{name = "Neil Freeman", email = "[email protected]"}
]
keywords = ["usa", "data", "federal information processing standard"]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Natural Language :: English",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
]
license = {file = "LICENSE"}
requires-python = ">=3.7"
dependencies = [
"importlib_resources; python_version < '3.9'",
]
[project.urls]
Homepage = "http://github.com/fitnr/addfips"
[project.optional-dependencies]
tests = [
"coverage[toml]>=6"
]
[tool.setuptools]
zip-safe = true
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.csv"]
[project.scripts]
addfips = "addfips.__main__:main"
[tool.black]
line-length = 120
target-version = [
"py38",
"py39",
"py310"
]
skip-string-normalization = true
[tool.isort]
profile = "black"
[tool.pylint.master]
fail-under = "9.5"
[tool.pylint.format]
max-line-length = 120
disable = [
"C0103",
]
[tool.pylint.basic]
good-names = "i,j,k,f,g"