-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
34 lines (31 loc) · 1.01 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
import setuptools
from redvid import __version__ as version
with open('README.md', 'r') as fh:
long_description = fh.read()
requirements = []
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setuptools.setup(
name='redvid',
version=version,
author='Khaled El-Morshedy',
license='GPL-v3.0',
author_email='[email protected]',
description='Smart downloader for Reddit hosted videos',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/elmoiv/redvid',
packages=setuptools.find_packages(exclude=['tests']),
install_requires=requirements,
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
python_requires='>=3.4',
entry_points={
'console_scripts': [
'redvid=redvid.__main__:run',
],
},
)