This repository has been archived by the owner on Nov 8, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
52 lines (47 loc) · 1.58 KB
/
setup.py
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
# -*- coding: utf-8 -*-
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 :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Testing",
"Topic :: Text Processing :: Markup",
"Topic :: Utilities",
]
with open('README.rst') as readme:
long_description = readme.read()
long_description += '\n\n'
with open('CHANGES.rst') as changes:
long_description += changes.read()
setup(
name='sphinx-testing',
version='1.0.1',
description='Testing utility classes and functions for Sphinx extensions',
long_description=long_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',
],
python_requires='>=3.5',
)