-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
148 lines (129 loc) · 4.41 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
[build-system]
requires = ["setuptools>=45", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
template = "{tag}"
dev_template = "{tag}.dev{ccount}"
dirty_template = "{tag}.dev{ccount}+dirty"
#[tool.setuptools.package-data]
# include VERSION file to a package
#my_module = ["VERSION"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
dependencies = {file = ["requirements.txt"]}
optional-dependencies.dev = {file = ["requirements-dev.txt"]}
[project.urls]
homepage = "https://config.pyfunc.com"
documentation = "https://docs.pyfunc.com"
repository = "https://github.com/pyfunc/config"
changelog = "https://github.com/pyfunc/config/releases"
wiki = "https://github.com/pyfunc/config/wiki"
issue = "https://github.com/pyfunc/config/issues/new"
[project]
name = "pyfunc_config"
dynamic = ["version", "readme", "dependencies", "optional-dependencies"]
description = "libs for cameramonit, ocr, fin-officer, cfo, and other projects"
keywords = ["test", "framework", "cameramonit", "fin-officer", "console", "terminal", "time"]
license = { file = "LICENSE" }
requires-python = ">=3.7"
authors = [
{ name = "Tom Sapletta", email = "[email protected]" },
]
maintainers = [
{ name = "pyfunc developers", email = "[email protected]" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: MacOS X",
"Environment :: Other Environment",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Framework :: IPython",
"Framework :: Jupyter",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Other Audience",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft",
"Operating System :: Microsoft :: MS-DOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX :: SunOS/Solaris",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation",
"Programming Language :: Python :: Implementation :: IronPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Unix Shell",
"Topic :: Desktop Environment",
"Topic :: Education :: Computer Aided Instruction (CAI)",
"Topic :: Education :: Testing",
"Topic :: Office/Business",
"Topic :: Other/Nonlisted Topic",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Pre-processors",
"Topic :: Software Development :: User Interfaces",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Logging",
"Topic :: System :: Monitoring",
"Topic :: System :: Shells",
"Topic :: Terminals",
"Topic :: Utilities"
]
[tool.pylint]
max-line-length = 88
disable = [
"C0103", # (invalid-name)
"C0113", # (missing-module-docstring)
"C0114", # (missing-class-docstring)
"C0115", # (missing-function-docstring)
"R0903", # (too-few-public-methods)
"R0913", # (too-many-arguments)
"W0105", # (pointless-string-statement)
]
[tool.flake8]
max_line_length = 99
exclude = [
".git",
"__pycache__",
"build",
"dist",
".eggs",
".asv",
".tox",
".ipynb_checkpoints"
]
[tool.isort]
line_length = 99
multi_line_output = 4
profile = "black"
src_paths = ["src/pyfunc_config", "test"]
honor_noqa = true
[tool.coverage.run]
#branch = true
#include = ["pyfunc/*"]
#relative_files = true
#disable_warnings = ["include-ignored"]
source = ["src"]
[tool.black]
line-length = 120