-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (44 loc) · 1.33 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
import setuptools
import yet
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="ye-tui",
version=yet.__version__,
author=yet.__author__,
author_email=yet.__email__,
license=yet.__license__,
description="yet is a console (kind of rss) application to download youtube videos.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nevarman/yet",
packages=setuptools.find_packages(),
package_data={
'yet': [
'config/yet.conf',
],
},
classifiers=[
'Environment :: Console',
'Environment :: Console :: Curses',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 3.6',
'Topic :: Desktop Environment',
'Topic :: Utilities',
],
entry_points='''
[console_scripts]
yet=yet.main:main
''',
install_requires=[
'xmltodict',
'youtube-dl'
],
python_requires='>=3.6',
)