-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (30 loc) · 1005 Bytes
/
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
from pathlib import Path
from setuptools import setup, find_packages
from sonus import __VERSION__, __PKGNAME__
with open('requirements.txt') as f:
required = f.read().splitlines()
HERE = Path(__file__).parent
README = (HERE / "README.md").read_text()
DESCRIPTION = "Cross-platform OverDrive audiobook client and chapterizer written in Python. "
setup(
name=__PKGNAME__,
version=__VERSION__,
author="digitalec",
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.6",
"Operating System :: OS Independent",
],
packages=find_packages(),
include_package_data=True,
python_requires=">=3.6",
install_requires=required,
url="https://github.com/digitalec/sonus",
entry_points = {
"console_scripts": ["sonus=sonus:main.main"]
}
)