2020-02-19 17:18:09 +01:00
|
|
|
#!/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',
|
2020-02-23 23:50:58 +01:00
|
|
|
version="1.0.0",
|
2020-02-19 17:18:09 +01:00
|
|
|
install_requires=['sphinx >= 2.1'],
|
2020-02-23 23:50:58 +01:00
|
|
|
license='BSD',
|
2020-02-19 17:18:09 +01:00
|
|
|
packages=['sphinx_multiversion'],
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'sphinx-multiversion=sphinx_multiversion:main',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|