-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
48 lines (43 loc) · 1.12 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
[metadata]
name = conditional
version = 2.1
description = Conditionally enter a context manager
long_description = file: README.rst, CHANGES.rst
long_description_content_type = text/x-rst
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
keywords = conditional, context manager, contextmanager, with, async, async with, enter, exit
author = Stefan H. Holek
author_email = [email protected]
url = https://github.com/stefanholek/conditional
project_urls =
Documentation = https://conditional.readthedocs.io/en/stable/
license = BSD-2-Clause
[options]
packages = find:
include_package_data = false
zip_safe = false
python_requires = >=3.5
[options.packages.find]
exclude =
conditional.examples
conditional.tests
[options.package_data]
conditional =
conditional.pyi
py.typed
[options.extras_require]
testing =
flexmock
mypy =
mypy
docs =
sphinx == 5.3.0
sphinx-rtd-theme == 1.0.0
[egg_info]
tag_build = dev0