-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·34 lines (32 loc) · 950 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
long_description = open(
os.path.join(
os.path.dirname(__file__),
'README.rst'
)
).read()
setup(
name='pydocverter',
version='0.0.0',
url='https://github.com/msabramo/pydocverter',
license='MIT',
description='Client for Docverter document conversion service (pandoc as a service)',
long_description=long_description,
author='Marc Abramowitz',
author_email='marc@marc-abramowitz.com',
py_modules=['docverter'],
install_requires=['requests'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Text Processing',
'Topic :: Text Processing :: Filters',
],
)