-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (48 loc) · 1.43 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from distutils.core import setup
from setuptools import find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE.txt') as f:
license = f.read()
runtime_requirements = [
'requests==2.19.1',
'PyYAML==3.12',
'pytube==9.2.2',
'streamlink==0.12.1',
'google-api-python-client==1.6.4'
]
test_requirements = [
'mock==2.0.0',
'pytest==3.6.1'
]
setup(
name='yt-archiver',
version='0.5.0',
description='Daemon for monitoring YouTube channels for new videos. Offers automatic backup of uploaded content',
long_description=readme,
license=license,
author='Michal Korman',
author_email='[email protected]',
url='https://github.com/mkorman9/yt-archiver',
packages=find_packages(),
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Microsoft',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python',
'Environment :: Console',
],
entry_points={
'console_scripts': [
'ytarchiver = ytarchiver.main:main'
]
},
install_requires=runtime_requirements,
tests_require=test_requirements,
extras_require={'test': test_requirements}
)