aboutsummaryrefslogtreecommitdiff
blob: cd47c3f4a2552309a009c852988e0eaa64c8ad27 (plain)
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
#!/usr/bin/env python

from setuptools import setup

# Version info -- read without importing
_locals = {}
with open("tyrian_sphinx_theme/_version.py") as fp:
    exec(fp.read(), None, _locals)
version = _locals["__version__"]

setup(
    name="tyrian-sphinx-theme",
    version=version,
    license = "BSD-2-Clause",
    description="A Tyrian based Sphinx theme for Gentoo",
    long_description=open('README.md', encoding='utf-8').read(),
    long_description_content_type='text/markdown',
    author="Max Magorsch",
    author_email="max@magorsch.de",
    url="https://github.com/mmagorsc/tyrian_sphinx_theme",
    packages=["tyrian_sphinx_theme"],
    package_data={'tyrian_sphinx_theme': [
        'theme.conf',
        '*.html',
        'static/*.css',
        'static/*.css_t'
    ]},
    include_package_data=True,
    entry_points={"sphinx.html_themes": ["tyrian_sphinx_theme = tyrian_sphinx_theme"]},
    classifiers=[
        "Framework :: Sphinx",
        "Framework :: Sphinx :: Theme",
        "Operating System :: OS Independent",
        "License :: OSI Approved :: BSD License",
        "Programming Language :: Python",
        "Programming Language :: Python :: 2",
        "Programming Language :: Python :: 2.6",
        "Programming Language :: Python :: 2.7",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.2",
        "Programming Language :: Python :: 3.3",
        "Programming Language :: Python :: 3.4",
        "Programming Language :: Python :: 3.5",
        "Programming Language :: Python :: 3.6"
    ],
)