-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.cfg
39 lines (36 loc) · 1.15 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
[metadata]
name = parsy
version = attr: parsy.__version__
description = Easy-to-use parser combinators, for parsing in pure Python
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Jeanine Adkisson
author_email = [email protected]
maintainer = Luke Plant
maintainer_email = [email protected]
url = https://github.com/python-parsy/parsy
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Topic :: Software Development :: Compilers
Topic :: Software Development :: Interpreters
Topic :: Text Processing
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
keywords = parser parsers parsing monad combinators
[options]
python_requires = >=3.7
packages = find:
package_dir = =src
[options.packages.find]
where = src
[flake8]
exclude = .tox,.git,docs,dist,build,todo
ignore = E731,E221,W503,E741,E203
max-line-length = 119