-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.21 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
from setuptools import setup
VERSION = '1.0'
DESCRIPTION = 'Python tool to automate processing a batch of OverDrive audiobooks.'
LONG_DESCRIPTION = 'Python tool to automate processing a batch of OverDrive audiobooks.'
# Setting up
setup(
name="AutoBooks",
version=VERSION,
author="Ivy Bowman",
license="GPL",
url="https://github.com/ivybowman/AutoBooks",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=["autobooks"],
entry_points={
"console_scripts": [
"autobooks = autobooks.AutoBooks:run",
"autobooks-discord = autobooks.AutoBooksDiscord:run"
]
},
install_requires=["odmpy @ git+https://git@github.com/ping/odmpy.git", "cronitor", "pandas", "discord.py",
"requests", "loguru", "lxml"],
include_package_data=True,
platforms="any",
keywords=['python', 'AutoBooks'],
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
]
)