-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
44 lines (41 loc) · 1.15 KB
/
setup.cfg
File metadata and controls
44 lines (41 loc) · 1.15 KB
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
[metadata]
name = dict_zip
version = attr: dict_zip.__version__
author = James Murphy
author_email = james@mcoding.io
description = A fast iterator for corresponding dictionaries
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache License, Version 2.0
license_files = LICENSE
platforms = unix, linux, osx, cygwin, win32
url = https://github.com/mCodingLLC/dict_zip
classifiers =
Intended Audience :: Developers
Development Status :: 3 - Alpha
Programming Language :: C
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Operating System :: MacOS
Operating System :: POSIX :: Linux
Operating System :: POSIX
[options]
packages =
dict_zip
package_dir =
=src
python_requires = >=3.7
zip_safe = no
[options.package_data]
dict_zip =
py.typed
__init__.pyi
[options.extras_require]
dev =
pytest >= 7.1
tox >= 3.25