-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
38 lines (35 loc) · 1.12 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
from setuptools import setup, find_packages
long_desc = '''
This package is a sample recipe domain for Sphinx, demonstrating
how to use custom indices.
See https://github.com/ofosos/sphinxrecipes.
'''
requires = ['Sphinx>=0.6',
'sphinxcontrib-domaintools>=0.1']
setup(
name='sphinxcontrib-recipes',
version='0.1',
url='http://github.com/ofosos/sphinxrecipes',
download_url='http://pypi.python.org/pypi/sphinxrecipes',
license='MIT',
author='Mark Meyer',
author_email='[email protected]',
description='Recipe sample domain for Sphinx',
long_description=long_desc,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Documentation',
'Topic :: Utilities',
],
platforms='any',
packages=find_packages(exclude=['sample*']),
include_package_data=False,
install_requires=requires,
namespace_packages=['sphinxrecipes']
)