-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 911 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
from setuptools import setup
setup(
name='conveyor',
version='0.0.0',
description='Download automation',
#long_description=,
#long_description_content_type='text/markdown',
author='Cody Opel',
author_email='[email protected]',
url='https://github.com/chlorm/conveyor',
packages=['conveyor'],
install_requires=[
'guessit',
'requests',
],
# TODO: convert scripts to entry_points functions.
scripts=[
'bin/conveyor-data-stranded-files',
'bin/download-complete',
'bin/offload-complete',
'bin/offload-sort',
'bin/update-plex-tv-section-locations',
],
include_package_data=True,
license='Apache Software License 2.0',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
)