forked from facebook/pyre2
-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.cfg
42 lines (37 loc) · 1 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
[metadata]
name = pyre2
author = Andreas van Cranenburgh
author_email = [email protected]
maintainer = Steve Arnold
maintainer_email = [email protected]
description = Python wrapper for Google\'s RE2 using Cython
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
url = https://github.com/andreasvc/pyre2
license = BSD
license_files = LICENSE
classifiers =
License :: OSI Approved :: BSD License
Programming Language :: Cython
Programming Language :: Python :: 3.6
Intended Audience :: Developers
Topic :: Software Development :: Libraries :: Python Modules
[options]
python_requires = >=3.6
zip_safe = False
[options.extras_require]
test =
nose
[nosetests]
verbosity = 3
with-doctest = 1
doctest-extension = txt
exe = 1
#with-coverage = 1
#cover-package = py_re2
#cover-min-percentage = 90
doctest-options = +ELLIPSIS,+NORMALIZE_WHITESPACE
[flake8]
# these error codes interfere with Black
ignore = E203, E231, E501, W503, B950
select = C,E,F,W,B,B9