1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Testing",
"Topic :: Text Processing :: Markup",
"Topic :: Utilities",
]
description = 'testing utility classes and functions for Sphinx extensions'
test_require = []
if sys.version_info < (2, 7):
test_require.append('unittest2')
if sys.version_info < (3, 3):
test_require.append('mock')
setup(
name='sphinx-testing',
version='1.0.1',
description=description,
long_description=description,
classifiers=classifiers,
keywords=['sphinx', 'testing'],
author='Takeshi Komiya',
author_email='i.tkomiya@gmail.com',
url='https://github.com/sphinx-doc/sphinx-testing',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
install_requires=[
'Sphinx',
],
tests_require=test_require,
)
|