-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
38 lines (35 loc) · 1.26 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setuptools.setup(
name="audiobook",
version="3.0.4",
author="CodePerfectPlus",
author_email="[email protected]",
description="Listen to your favourite audiobook",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=required,
url="https://github.com/Py-Contributors/audiobook",
keywords="audiobook",
packages=setuptools.find_packages(),
project_urls= {
"Documentation": "https://pycontributors.readthedocs.io/projects/Audiobook/en/latest/",
"Source": "https://github.com/Py-Contributors/AudioBook",
"Tracker": "https://github.com/Py-Contributors/AudioBook/issues"
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
],
python_requires=">=3.4",
entry_points={
"console_scripts": ["audiobook = audiobook.cli:main"],
},
)