forked from dylanljones/pyrekordbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
78 lines (72 loc) · 2.02 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
[metadata]
name = pyrekordbox
description = Inofficial Python package for interacting with the library of Pioneer's Rekordbox DJ software. It supports XML files, ANLZ files, My-Settings files and the Rekordbox 6 master.db database
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/dylanljones/pyrekordbox
author = Dylan Jones
author_email = dylanljones94@gmail.com
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Multimedia :: Sound/Audio
project_urls =
Source = https://github.com/dylanljones/pyrekordbox
Documentation = https://pyrekordbox.readthedocs.io/en/stable/
Tracker = https://github.com/dylanljones/pyrekordbox/issues
[options]
packages = find:
install_requires =
bidict>=0.21.0
blowfish>=0.6.0
construct>=2.10.0
numpy>=1.19.0
setuptools>=60.0.0
setuptools-scm[toml]>=4,<6
sqlalchemy>=1.4.0
python_requires = >=3.7
include_package_data = True
platforms = any
zip_safe = False
[options.extras_require]
build =
wheel>=0.37.0
test =
hypothesis>=6.0.0
pytest>=6.2.0
pytest-cov
[aliases]
test = pytest
[build_sphinx]
project = pyrekordbox
source-dir = ./docs/source
build-dir = ./docs/build
[pydocstyle]
add-ignore = D105 # ignore undocumented dunder methods like ``__str__`
[flake8]
max-line-length = 88
ignore = D203
extend-ignore = E203
per-file-ignores = __init__.py:F401
exclude =
.git,
.idea,
__pycache__,
build,
dist,
*/structs.py,
*/_version.py,
docs/*