-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (33 loc) · 905 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='pyniconico',
version='1.4',
description='Python NicoNico Douga downloader',
long_description='Please read ./README.md',
author='Sakaki Mirai',
author_email='sakaki333@gmail.com',
url='https://github.com/Sakaki/pyniconico',
license='Written in ./LICENSE for this project. But please be careful this project download external programs.',
packages=find_packages(exclude=('tests', 'docs')),
install_requires=[
'progressbar2',
'requests',
'mutagen',
'pillow',
'argparse',
'selenium',
'beautifulsoup4',
'click'
],
py_modules=['niconico'],
entry_points='''
[console_scripts]
nicopy=niconico:main
''',
package_data={
'nico_tools': [
'web_drivers.json'
]
},
)