1 | # -*- coding: utf-8 -*- |
---|
2 | |
---|
3 | from ez_setup import use_setuptools |
---|
4 | use_setuptools() |
---|
5 | from setuptools import setup, find_packages |
---|
6 | |
---|
7 | long_desc = ''' |
---|
8 | This package contains the specdomain Sphinx extension. |
---|
9 | |
---|
10 | .. add description here .. |
---|
11 | ''' |
---|
12 | |
---|
13 | requires = ['Sphinx>=0.6'] |
---|
14 | |
---|
15 | setup( |
---|
16 | name='sphinxcontrib-specdomain', |
---|
17 | version='0.1', |
---|
18 | url='http://bitbucket.org/birkenfeld/sphinx-contrib', |
---|
19 | download_url='http://pypi.python.org/pypi/sphinxcontrib-specdomain', |
---|
20 | license='BSD', |
---|
21 | author='Pete Jemian', |
---|
22 | author_email='jemian@anl.gov', |
---|
23 | description='Sphinx "specdomain" extension', |
---|
24 | long_description=long_desc, |
---|
25 | zip_safe=False, |
---|
26 | classifiers=[ |
---|
27 | 'Development Status :: 4 - Beta', |
---|
28 | 'Environment :: Console', |
---|
29 | 'Environment :: Web Environment', |
---|
30 | 'Intended Audience :: Developers', |
---|
31 | 'License :: OSI Approved :: BSD License', |
---|
32 | 'Operating System :: OS Independent', |
---|
33 | 'Programming Language :: Python', |
---|
34 | 'Topic :: Documentation', |
---|
35 | 'Topic :: Utilities', |
---|
36 | ], |
---|
37 | platforms='any', |
---|
38 | packages=find_packages(), |
---|
39 | include_package_data=True, |
---|
40 | install_requires=requires, |
---|
41 | namespace_packages=['sphinxcontrib'], |
---|
42 | ) |
---|