diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-09-01 12:22:24 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-09-01 12:22:24 +0200 |
commit | 999b55f1a3c6e54a00721483f29cf842d61153fb (patch) | |
tree | 1454591d1ff878abc23360d0f9dc3a1814672967 /setup.py | |
parent | Update homepage (diff) | |
download | tyrian-sphinx-theme-999b55f1a3c6e54a00721483f29cf842d61153fb.tar.gz tyrian-sphinx-theme-999b55f1a3c6e54a00721483f29cf842d61153fb.tar.bz2 tyrian-sphinx-theme-999b55f1a3c6e54a00721483f29cf842d61153fb.zip |
Migrate to pyproject.toml
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/setup.py b/setup.py deleted file mode 100644 index 5b4eac4..0000000 --- a/setup.py +++ /dev/null @@ -1,46 +0,0 @@ -#!/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://gitweb.gentoo.org/proj/tyrian-sphinx-theme.git", - 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" - ], -) |