-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (36 loc) · 1.13 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
from setuptools import setup, find_packages
setup(
name='tripper',
version='0.1.19',
packages=find_packages(include=['tripper', 'tripper.*']),
include_package_data=True,
author='Stefan Heid',
author_email='[email protected]',
description='Download utility to create and maintain local collection of Tatort Episodes published in the D,A,CH - mediathek',
long_description=open('README.md').read(),
entry_points={'console_scripts': [
'tripper = tripper.cli:main ',
]},
license='GPLv3',
keywords='tatort,mediathek,ripper',
url='https://github.com/stheid/tripper',
install_requires=[
'click',
'tqdm',
'pyyaml',
'pandas',
'lxml',
'thefuzz',
'requests',
'youtube-dl'
],
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.8',
'Development Status :: 4 - Beta',
'Operating System :: POSIX :: Linux'
]
)