-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·41 lines (39 loc) · 1.44 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
#!/usr/bin/env python
from setuptools import setup
setup(name='docutils-htmlwriter',
version='0.3',
description='Another HTML Writer for Docutils',
long_description=open('README.rst').read(),
author='IGARASHI Masanao',
author_email='[email protected]',
url='http://github.com/masayuko/docutils-htmlwriter',
packages=['htmlwriter'],
license='MIT',
keywords='website, static',
classifiers=(
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Plugins',
'Environment :: Web Environment',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: OS Independent',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Documentation',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing'),
install_requires=['docutils'],
include_package_data=True,
entry_points = {
'console_scripts': [
'rst2htmlr = htmlwriter.rst2htmlr:main'
]
},
)