-
Notifications
You must be signed in to change notification settings - Fork 133
/
setup.py
42 lines (36 loc) · 1.22 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
from distutils.core import setup
setup(
name='webpage2html',
version='0.3.7',
author='Wenlei Zhu',
author_email='i@ztrix.me',
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='View https://github.com/zTrix/webpage2html for project description and usage',
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',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development',
'Topic :: System',
'Topic :: Terminals',
'Topic :: Utilities',
],
)