-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 947 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 947 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
from setuptools import setup, find_packages
setup(
name='NaverBlogBackup',
description='Python Crawler for Backup Naver blog posts.',
version='0.1.3',
author='Lenir',
author_email='1net1@naver.com',
long_description=open('README.md').read(),
url='https://github.com/Lenir/Naver-Blog-Backup',
license='BSD License',
keywords=['Naver', 'NaverBlog', 'Naver-Blog-Backup'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules'
],
install_requires=[
'BeautifulSoup4',
'progressbar2',
],
packages=find_packages(exclude=['ez_setup', 'tests', 'tests.*']),
package_data={'':['blogstyle.css']},
scripts=['bin/naverblogbackup.py']
)