-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
47 lines (40 loc) · 1.39 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
from setuptools import setup, find_packages
from codecs import open
with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(
name='addic7ed',
version='1.1.5',
description=('Addic7ed scraper written in Python '
'to download subtitles (almost) automatically'),
long_description=long_description,
url='https://github.com/Jesus-21/addic7ed',
author='Adrian MAURIN',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search'
],
keywords='subtitles addic7ed scraper',
packages=find_packages(exclude=['readme']),
install_requires=['beautifulsoup4',
'fuzzywuzzy',
'python-Levenshtein',
'requests',
'termcolor'],
entry_points={
'console_scripts': [
'addic7ed=addic7ed.__init__:addic7ed',
],
},
)