-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
61 lines (54 loc) · 1.64 KB
/
setup.cfg
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
[metadata]
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache2
license_file = LICENSE
python_requires = >=3.9
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Environment :: Web Environment
License :: OSI Approved :: Apache Software License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
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
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Libraries
Topic :: Utilities
project_urls =
Source = https://github.com/thewebscraping/gemma-template
Homepage = https://github.com/thewebscraping/gemma-template
[options]
zip_safe = False
include_package_data = True
packages = find:
[options.packages.find]
exclude =
examples*
tools*
docs*
[flake8]
max-line-length = 120
ignore = F821, E203, W503, E501, E231
per-file-ignores =
__init__.py: F405, F403, E402, F401
[tool.black]
line-length = 120
include = '\.pyi?$'
unstable = true
[tool.isort]
atomic = true
profile = "black"
line_length = 120
skip_gitignore = true
skip_glob = ["tests/data", "profiling"]
known_first_party = ["black", "blib2to3", "blackd", "_black_version"]
add_imports = "from __future__ import annotations"