-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 719 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 719 Bytes
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
#!/usr/bin/env python2
from setuptools import setup
setup(
name = 'flyt',
packages = ['src'],
version = '0.3',
description = 'Fetch Latest YouTube videos from given channel',
author = 'Jakub Bogucki',
author_email = 'jbogucki@libertymail.net',
license = 'MIT',
url = 'https://github.com/jakubbogucki/flyt',
download_url = 'https://github.com/jakubbogucki/flyt/archive/0.3.tar.gz',
keywords = ['flyt', 'fetch', 'latest', 'youtube', 'video', 'channel'],
classifiers = [],
scripts = ['src/flyt.py'],
entry_points = {
'console_scripts': [
'flyt = flyt:main'
]
},
setup_requires = ['pytest-runner'],
tests_require = ['pytest'],
)