-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
27 lines (23 loc) · 874 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
from __future__ import with_statement
import os
from distutils.core import setup
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name='sphinx-http-domain',
version='0.2',
description='Sphinx domain to mark up RESTful web services in ReST',
long_description=long_description,
url='https://github.com/deceze/Sphinx-HTTP-domain/',
author='David Zentgraf',
author_email='[email protected]',
packages=['sphinx_http_domain'],
requires=['Sphinx (>=1.0.7)'],
zip_safe=True,
classifiers=['Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development :: Documentation'],
)