mirror of
https://github.com/vale981/sphinx-multiversion
synced 2025-03-05 09:31:40 -05:00
22 lines
604 B
Python
Executable file
22 lines
604 B
Python
Executable file
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='sphinx-multiversion',
|
|
description='Add support for multiple versions to sphinx',
|
|
classifiers=[
|
|
'License :: OSI Approved :: BSD License',
|
|
"Programming Language :: Python :: 3",
|
|
],
|
|
author='Jan Holthuis',
|
|
author_email='holthuis.jan@googlemail.com',
|
|
install_requires=['sphinx >= 2.1'],
|
|
license='MIT',
|
|
packages=['sphinx_multiversion'],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'sphinx-multiversion=sphinx_multiversion:main',
|
|
],
|
|
},
|
|
)
|