forked from steinitzu/humblebee
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (29 loc) · 709 Bytes
/
Copy pathsetup.py
File metadata and controls
36 lines (29 loc) · 709 Bytes
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
#!/usr/bin/env python
#encoding:utf-8
from setuptools import setup
setup(
name='humblebee',
version='1.101',
description='A scraper for TV shows.',
author='Steinthor Palsson',
author_email='steinitzu@gmail.com',
url='https://github.com/steinitzu/humblebee',
license='MIT',
packages=[
'humblebee',
],
package_data = {'' : ['default.cfg', 'schema.sql']},
entry_points={
'console_scripts': [
'humblebee = humblebee.cli:main'
]
},
install_requires=[
'httplib2',
'pyUnRAR2',
'send2trash',
'unidecode',
'gnarlytvdb',
'xmltodict',
]
)