-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (33 loc) · 1.32 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
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
with open('HISTORY.md') as history_file:
history = history_file.read()
setup(author="Neeraj Lagwankar",
author_email='neerajlagwankar@gmail.com',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
name='yts_downloader',
url="https://github.com/FlashBlaze/yts-downloader/",
version='0.1.2',
description="A simple python CLI to download movies from yts or formerly yify",
long_description=readme + '\n\n' + history,
long_description_content_type='text/markdown',
license='MIT license',
keywords='yts_downloader yts torrent download',
install_requires=['requests', 'beautifulsoup4'],
entry_points={
'console_scripts': [
'yts-downloader=yts_downloader.yts_downloader:main'
]
},
zip_safe=False,
packages=find_packages(include=['yts_downloader']))