mirror of
https://github.com/vale981/sphinx-multiversion
synced 2025-03-04 17:11:39 -05:00
setup.py: Add more metadata
This commit is contained in:
parent
08f4c964bd
commit
1bb3ff4343
1 changed files with 9 additions and 0 deletions
9
setup.py
9
setup.py
|
@ -1,16 +1,25 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
import os.path
|
||||
from setuptools import setup
|
||||
|
||||
with open(os.path.join(os.path.dirname(__file__), "README.md")) as f:
|
||||
readme = f.read()
|
||||
|
||||
setup(
|
||||
name="sphinx-multiversion",
|
||||
description="Add support for multiple versions to sphinx",
|
||||
long_description=readme,
|
||||
long_description_content_type="text/markdown",
|
||||
classifiers=[
|
||||
"License :: OSI Approved :: BSD License",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
],
|
||||
author="Jan Holthuis",
|
||||
author_email="holthuis.jan@googlemail.com",
|
||||
url="https://holzhaus.github.io/sphinx-multiversion/",
|
||||
version="1.0.0",
|
||||
install_requires=["sphinx >= 2.1"],
|
||||
license="BSD",
|
||||
|
|
Loading…
Add table
Reference in a new issue