forked from DakaraProject/dakara-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
65 lines (59 loc) · 1.84 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
[metadata]
name = dakarabase
version = attr: dakara_base.version.__version__
author = Flore <flore.love@gmail.com>, Neraste <neraste.herr10@gmail.com>
description = Collecion of helper modules for the Dakara Project
long_description = file: README.md, LICENSE
long_description_content_type = text/markdown
license = MIT
url = https://github.com/DakaraProject/dakara-base
project_urls =
Bug tracker=https://github.com/DakaraProject/dakara-base/issues
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Operating System :: OS Independent
Environment :: Console
Intended Audience :: Developers
[options]
package_dir =
=src
packages = find:
# dependencies are pinned by interval
install_requires =
coloredlogs>=15.0.1,<15.1.0
environs>=9.5.0,<9.6.0
furl>=2.1.3,<2.2.0
importlib-resources>=5.6.0,<5.7.0; python_version < '3.7'
path>=16.4.0,<16.5.0
platformdirs>=2.5.2,<2.6.0
progressbar2>=4.0.0,<4.1.0
PyYAML>=6.0,<6.1
requests>=2.27.1,<2.28.0
websocket-client>=1.3.1,<1.4.0
include_package_data = true
[options.extras_require]
tests =
black>=22.3.0,<22.4.0
codecov>=2.1.12,<2.2.0
flake8>=4.0.1,<4.1.0
isort>=5.10.1,<5.11.0
pdoc>=10.0.4,<10.1.0
pre-commit>=2.17.0,<2.18.0
pytest-cov>=3.0.0,<3.1.0
pytest>=7.1.1,<7.2.0
[options.packages.find]
where = src
[flake8]
max-line-length = 88
ignore = E203, W503
[tool:pytest]
addopts = --cov=dakara_base
[isort]
profile = black