File: setup.py

package info (click to toggle)
guzzle-sphinx-theme 0.7.11-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 5,308 kB
  • sloc: javascript: 7,838; python: 113; makefile: 9
file content (21 lines) | stat: -rw-r--r-- 667 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup

setup(
    name='guzzle_sphinx_theme',
    version='0.7.11',
    description='Sphinx theme used by Guzzle.',
    long_description=open('README.rst').read(),
    author='Michael Dowling',
    author_email='mtdowling@gmail.com',
    url='https://github.com/guzzle/guzzle_sphinx_theme',
    packages=['guzzle_sphinx_theme'],
    include_package_data=True,
    install_requires=['Sphinx>=1.2b1'],
    classifiers=(
        'Development Status :: 3 - Alpha',
        'Intended Audience :: Developers',
        'Natural Language :: English',
        'License :: OSI Approved :: MIT License',
        'Programming Language :: Python',
    ),
)