-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (35 loc) · 1.18 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (35 loc) · 1.18 KB
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
from pathlib import Path
from setuptools import setup, find_packages
__version__ = '3.0'
with open('requirements.txt') as f:
required = f.read().splitlines()
HERE = Path(__file__).parent
README = (HERE / "README.md").read_text()
DESCRIPTION = "Monitor new releases by a specified list of artists and auto download using the deemix library"
setup(
name="deemon",
version=__version__,
author="deathrashed",
description=DESCRIPTION,
long_description=README,
long_description_content_type="text/markdown",
license="GPL3",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
],
packages=find_packages(),
include_package_data=True,
python_requires=">=3.8",
install_requires=required,
url="https://github.com/deathrashed/deemon",
entry_points = {
"console_scripts": [
"deemon=deemon.__main__:main",
"deemon-mcp=deemon.integrations.mcp:main",
"deemon-km-discography=deemon.integrations.km:main",
"deemon-km-get=deemon.integrations.km_get:main",
],
}
)