-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
60 lines (59 loc) · 1.73 KB
/
setup.py
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
from setuptools import setup, find_packages
setup(
name="discodos",
version="3.0.3",
description="DJ and record collector's toolbox for Discogs",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
author="J0J0 Todos",
url="https://discodos.jojotodos.net",
project_urls={
"Bug Tracker": "https://github.com/joj0/discodos/issues",
"Documentation": "https://discodos.readthedocs.io",
"Source Code": "https://github.com/joj0/discodos/",
},
packages=find_packages(),
test_suite="tests",
license="GPLv3+",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Sound/Audio",
"Environment :: Console",
],
install_requires=[
"Click",
"tabulate",
"PyYaml",
"click-option-group",
"dropbox",
"musicbrainzngs",
"rich",
"textual",
"python3-discogs-client",
"webdavclient3",
],
package_data={"discodos.ctrl": ["*.tcss"]},
include_package_data=True,
entry_points={
"console_scripts": [
"discosync = discodos.cmd.sync:main",
"dsc = discodos.cmd23:main_cmd",
],
},
flake8_ignore=["E501", "E225"],
exclude=[
".git",
"__pycache__",
"docs/source/conf.py",
"old",
"build",
"dist",
".eggs",
"discodos_logo.py",
],
)