-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
50 lines (44 loc) · 1.25 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
[metadata]
name = RegexFactory
description_= Dynamically generate regex patterns
author = GrandMoff100
author_email = nlarsen23.student@gmail.com
version = attr: regexfactory.__version__
long_description = file: README.md
long_description_content_type = text/markdown
keywords = regex, generator, regular expression, strings
license = GPLv3
classifiers =
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Programming Language :: Python :: 3
Operating System :: OS Independent
Programming Language :: Python
Development Status :: 4 - Beta
Intended Audience :: Developers
Topic :: Software Development :: Libraries
[options]
zip_safe = True
packages = regexfactory
[options.extras_require]
dev =
isort
black
flake8
pylint
pytest
hypothesis
[tool:pytest]
markers =
patterns: Tests for classes in regexfactory/patterns.py
pattern: Tests for classes in regexfactory/pattern.py
addopts = -ra --hypothesis-show-statistics --hypothesis-profile=default
testpaths =
tests
[flake8]
ignore = E501
exclude = .git, __pycache__, .github
per-file-ignores = __init__.py:F401, conf.py:E402
[isort]
profile = black
[pylint.messages_control]
disable = too-few-public-methods, too-many-arguments, line-too-long