-
Notifications
You must be signed in to change notification settings - Fork 224
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 674 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 674 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = 'PttWebCrawler',
packages = ['PttWebCrawler'],
version = '1.4',
description = 'ptt web crawler',
author = '',
author_email = '',
url = 'https://github.com/jwlin/ptt-web-crawler',
download_url = '',
keywords = [],
classifiers = [],
license='MIT',
install_requires=[
'argparse',
'beautifulsoup4',
'requests',
'six',
'pyOpenSSL'
],
entry_points={
'console_scripts': [
'PttWebCrawler = PttWebCrawler.__main__:main'
]
},
zip_safe=True
)