forked from Taxel/PlexTraktSync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
50 lines (44 loc) · 1.45 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
[metadata]
name = PlexTraktSync
version = attr: plextraktsync.__version__
description = Plex-Trakt-Sync is a two-way-sync between trakt.tv and Plex Media Server
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/Taxel/PlexTraktSync
project_urls =
Bug Tracker = https://github.com/Taxel/PlexTraktSync/issues
classifiers =
# See: https://pypi.python.org/pypi?:action=list_classifiers
Environment :: Console
# List of python versions and their support status:
# https://en.wikipedia.org/wiki/CPython#Version_history
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
packages =
plextraktsync
plextraktsync.commands
plextraktsync.decorators
python_requires = >=3.7
include_package_data = True
[options.packages.find]
exclude =
tests
[options.entry_points]
console_scripts =
plextraktsync = plextraktsync.cli:cli
[options.data_files]
. =
requirements.txt
plextraktsync/config.default.yml
[requirements-files]
# setuptools does not support "file:", so use a extra package for this:
# https://pypi.org/project/setuptools-declarative-requirements/
# https://github.com/pypa/setuptools/issues/1951#issuecomment-718094135
install_requires = requirements.txt
[flake8]
ignore = E501