-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
52 lines (49 loc) · 1.45 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
# -*- coding: utf-8 -*-
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='commute-tube',
version='1.6',
packages=['commute_tube',],
url='https://github.com/snipem/commute-tube',
license='GPL 3.0',
long_description=long_description,
long_description_content_type='text/markdown',
author='Matthias Küch',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
],
keywords='youtube-dl wrapper commute config datahoarding',
package_data={
'sample': ['config.example.json'],
},
entry_points = {
"console_scripts": [
"commute-tube=commute_tube.__main__:main"
]
},
install_requires = [
"youtube_dl",
"humanfriendly"
],
setup_requires = [
"pytest-runner",
"pytest",
"pytest-cov"
],
tests_requires = [
"pytest"
],
project_urls={ # Optional
'Bug Reports': 'https://github.com/snipem/commute-tube/issues',
'Source': 'https://github.com/snipem/commute-tube/'
}
)