summarylogtreecommitdiffstats
path: root/setup.py
blob: 24548eedd0da611e8789b0b42efd08a44d161995 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup

setup(
    name="sunpy-sphinx-theme",
    use_scm_version=True,
    setup_requires=["setuptools_scm"],
    use_2to3=False,
    description="The sphinx theme for the SunPy website and documentation.",
    long_description="The sphinx theme for the SunPy website and documentation.",
    author="The SunPy Developers",
    install_requires=["sphinx-bootstrap-theme"],
    packages=["sunpy_sphinx_theme"],
    include_package_data=True,
    license="2-clause BSD",
    classifiers=[
        "Intended Audience :: Developers",
        "Programming Language :: Python",
        "Programming Language :: Python :: 3",
        "Operating System :: OS Independent",
        "License :: OSI Approved :: BSD License",
    ],
)