-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
66 lines (60 loc) · 1.67 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
62
63
64
65
66
[metadata]
name = repoet
version = attr: repoet.__version__
description = Write regular expressions like poetry in Python - transform cryptic regex into elegant, readable patterns
long_description = file: README.md
long_description_content_type = text/markdown
author = Dawnfz-Lenfeng
author_email = [email protected]
url = https://github.com/Dawnfz-Lenfeng/repoet
project_urls =
Bug Tracker = https://github.com/Dawnfz-Lenfeng/repoet/issues
license = MIT
keywords = regex, regular expression, pattern matching, readable
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
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
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Text Processing :: General
[options]
packages = find:
python_requires = >=3.7
install_requires =
typing-extensions>=4.0.0; python_version < "3.8"
zip_safe = False
[options.package_data]
repoet =
*.pyi
py.typed
[options.packages.find]
exclude =
tests*
docs*
examples*
[options.extras_require]
dev =
pytest>=6.0
pytest-cov>=2.0
black>=22.0
isort>=5.0
mypy>=0.900
flake8>=3.9
tox>=3.24
docs =
sphinx>=4.0
sphinx-rtd-theme>=0.5
[flake8]
max-line-length = 88
extend-ignore = E203, W503
exclude = .git,__pycache__,build,dist,*.egg-info
[isort]
profile = black
multi_line_output = 3
line_length = 88