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 | ''' + open('README').read() |
---|
11 | |
---|
12 | version = open('VERSION').read().strip() |
---|
13 | |
---|
14 | requires = ['Sphinx>=0.6'] |
---|
15 | |
---|
16 | # classifiers: http://pypi.python.org/pypi?%3Aaction=list_classifiers |
---|
17 | |
---|
18 | setup( |
---|
19 | name='sphinxcontrib-specdomain', |
---|
20 | version=version, |
---|
21 | url='https://subversion.xray.aps.anl.gov/bcdaext/specdomain/trunk/src/specdomain/', |
---|
22 | #'http://bitbucket.org/birkenfeld/sphinx-contrib', |
---|
23 | #download_url='http://pypi.python.org/pypi/sphinxcontrib-specdomain', |
---|
24 | license='Argonne OPEN SOURCE LICENSE, see LICENSE file for details', |
---|
25 | author='Pete Jemian', |
---|
26 | author_email='jemian@anl.gov', |
---|
27 | description='Sphinx "specdomain" extension', |
---|
28 | long_description=long_desc, |
---|
29 | zip_safe=False, |
---|
30 | classifiers=[ |
---|
31 | 'Development Status :: 4 - Beta', |
---|
32 | 'Environment :: Console', |
---|
33 | 'Environment :: Web Environment', |
---|
34 | 'Intended Audience :: Science/Research', |
---|
35 | 'License :: Free To Use But Restricted', |
---|
36 | 'Operating System :: OS Independent', |
---|
37 | 'Programming Language :: Python', |
---|
38 | 'Topic :: Documentation', |
---|
39 | 'Topic :: Utilities', |
---|
40 | ], |
---|
41 | platforms='any', |
---|
42 | packages=find_packages(), |
---|
43 | include_package_data=True, |
---|
44 | install_requires=requires, |
---|
45 | namespace_packages=['sphinxcontrib'], |
---|
46 | ) |
---|