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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
"""
cloud_sptheme setup script
"""
#=========================================================
#init script env
#=========================================================
import sys,os
from os.path import abspath, join
root_path = abspath(join(__file__, ".."))
os.chdir(root_path)
lib_path = '.'
#=========================================================
#imports
#=========================================================
import re
from setuptools import setup, find_packages
#=========================================================
#inspection
#=========================================================
from cloud_sptheme import __version__ as VERSION
#=========================================================
#setup
#=========================================================
setup(
#package info
packages = find_packages(),
package_data = {
"cloud_sptheme": [
"ext/*.css",
]
},
zip_safe=False,
install_requires=[ "sphinx>=1.1"],
# metadata
name = "cloud_sptheme",
version = VERSION,
author = "Eli Collins",
author_email = "elic@assurancetechnologies.com",
description = "a nice sphinx theme named 'Cloud', and some related extensions",
long_description="""\
This is a small package containing a Sphinx theme named "Cloud",
along with some related Sphinx extensions. To see an example
of the theme in action, check out it's documentation
at `<http://packages.python.org/cloud_sptheme>`_.
""",
license = "BSD",
keywords = "sphinx extension theme",
url = "https://bitbucket.org/ecollins/cloud_sptheme",
download_url = "http://pypi.python.org/pypi/cloud_sptheme",
classifiers=[
'Development Status :: 5 - Production/Stable',
# XXX: there should be a "Framework :: Sphinx :: Extension" classifier :)
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Documentation',
'Topic :: Software Development :: Documentation',
]
)
#=========================================================
#EOF
#=========================================================
|