forked from zTrix/webpage2html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (36 loc) · 1.13 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
#!/usr/bin/env python2
from distutils.core import setup
from setuptools import find_packages
setup(
name='webpage2html',
version='0.3.0',
author='Wenlei Zhu',
author_email='[email protected]',
url='https://github.com/zTrix/webpage2html',
license='LICENSE.txt',
keywords="webpage html convert",
description='Save/convert web pages to a single editable html file',
long_description=open('README.txt').read(),
py_modules = ['webpage2html'],
# Refers to test/test.py
test_suite='test.test',
entry_points = {
'console_scripts': [
'webpage2html=webpage2html:main'
]
},
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
'Topic :: System',
'Topic :: Terminals',
'Topic :: Utilities',
],
)