-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
45 lines (41 loc) · 1.15 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
44
45
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup script for python-bitbucket."""
from setuptools import setup
from word2html import VERSION
SHORT_DESC = (
"A quick and dirty script to convert a Word "
"(docx) document to html."
)
setup(
name='word2html',
version=VERSION,
description=SHORT_DESC,
long_description=open('README.md').read(),
keywords='word to html',
author='Brad Montgomery',
author_email='brad@bradmontgomery.net',
url='https://github.com/bradmontgomery/word2html',
license='MIT',
packages=['word2html'],
include_package_data=True,
package_data={'': ['README.md', 'LICENSE.txt']},
zip_safe=False,
install_requires=[
'pypandoc',
'pytidylib',
],
entry_points={
'console_scripts': [
'word2html = word2html.main:main',
],
},
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Topic :: Text Processing',
'Topic :: Utilities',
],
)