-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
54 lines (51 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
51
52
53
54
[metadata]
name = python-dynamic-code
description = library facilitating the use of dynamic code in Python
long_description = file: README.rst
long_description_content_type = text/x-rst
license = MIT
author = Bill Huneke
author_email = [email protected]
url = https://github.com/wahuneke/python-dynamic-code
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Topic :: Software Development :: Self Modifying Code
Topic :: Software Development :: Code Generators
Topic :: Software Development :: Pre-processors
Typing :: Typed
Programming Language :: Python :: 3 :: Only
Private :: Do Not Upload
[options]
packages =
python_dynamic_code
install_requires =
more-itertools
sentinel==1.0.0
ast-comments~=1.2.0
python_requires = >=3.8
package_dir =
=src
setup_requires =
setuptools-scm
[options.extras_require]
dev =
pre-commit
tox
testing =
pytest
pytest-benchmark
pytest-mock
pytest-mypy
hypothesis
hypothesis-pytest
hypothesmith
[options.package_data]
python_dynamic_code = py.typed
[devpi:upload]
formats=sdist.tgz,bdist_wheel
[flake8]
max-line-length = 120
ignore = E203, W503