source: specdomain/src/round2/setup.py @ 966

Last change on this file since 966 was 908, checked in by jemian, 11 years ago

initial checkin starting over from scratch

File size: 1.2 KB
Line 
1# -*- coding: utf-8 -*-
2
3from ez_setup import use_setuptools
4use_setuptools()
5from setuptools import setup, find_packages
6
7long_desc = '''
8This package contains the specdomain Sphinx extension.
9
10.. add description here ..
11'''
12
13requires = ['Sphinx>=0.6']
14
15setup(
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)
Note: See TracBrowser for help on using the repository browser.