forked from fsantini/python-e3dc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
48 lines (44 loc) · 1.14 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 = pye3dc
version = attr: e3dc.__version__
description = E3/DC client for python.
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
author = Francesco Santini
author_email = francesco.santini@gmail.com
url = https://github.com/fsantini/python-e3dc
classifiers =
Development Status :: 4 - Beta
Environment :: Web Environment
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
[options]
zip_safe=False
python_requires = >=3.8
install_requires =
py3rijndael
python-dateutil
requests
tzlocal
websocket-client
packages = e3dc
[options.extras_require]
develop =
jsbeautifier
argparse
[isort]
profile = black
[flake8]
exclude = .venv, .git, build, docs
max-line-length = 88
docstring-convention = google
# E722 should be fixed
extend-ignore = E203, E302, E501, W293, E722