-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
51 lines (42 loc) · 1.13 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
[metadata]
name = dopplerr
summary = Subtitle Download Web Service for Sonarr
description-file = README.rst
author = Gaetan Semet
author-email = [email protected]
home-page = https://github.com/Stibbons/dopplerr
classifier =
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3.6
Topic :: Multimedia :: Video
[files]
packages =
dopplerr
cfgtree
data-files = frontend = frontend/dist/*
[entry_points]
console_scripts =
dopplerr = dopplerr.main:main
[build_sphinx]
source-dir = doc/source
build-dir = doc/build
all_files = 1
[upload_sphinx]
upload-dir = doc/build/html
[pbr]
warnerrors = True
[wheel]
universal = 1
[bdist_wheel]
# This flag says that the code is written to work on both Python 2 and Python
# 3. If at all possible, it is good practice to do this. If you cannot, you
# will need to generate wheels for each Python version that you support.
universal=1
[pep8]
max-line-length = 100
[tool:pytest]
junit_suite_name = dopplerr