-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
81 lines (69 loc) · 1.63 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[metadata]
name = redis_ipc
attr: setuptools_scm.get_version
author = The redis_ipc Authors
author_email = <[email protected]>
maintainer = Steve Arnold
maintainer_email = [email protected]
description = A set of redis_ipc client server classes
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
keywords = redis, IPC
url = https://github.com/VCTLabs/redis-ipc-py
license = GPL-2.0-or-later
home_page = https://github.com/VCTLabs
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v2
Operating System :: POSIX
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3 :: Only
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: Testing
[options]
python_requires = >=3.8
zip_safe = True
py_modules =
redis_ipc
setup_requires =
setuptools_scm[toml]
install_requires =
importlib-metadata; python_version < '3.8'
redis
[options.extras_require]
doc =
sphinx
sphinx_git
recommonmark
sphinx_rtd_theme
sphinxcontrib-apidoc
test =
pytest
pytest-cov
cov =
coverage[toml]
coverage_python_version
[check]
metadata = true
restructuredtext = true
strict = false
[check-manifest]
ignore =
.codeclimate.yml
.gitattributes
.coveragerc
.gitignore
.pep8speaks.yml
conda/**
[flake8]
exclude =
.git,
__pycache__,
test,
build,
dist
max-line-length = 90
max-complexity = 25
addons = file,open,basestring,xrange,unicode,long,cmp