-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
34 lines (32 loc) · 1.1 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
from setuptools import setup, find_packages
PROJECT_URL = 'https://github.com/pfalcon/sphinx_selective_exclude'
VERSION = '1.0.3'
setup(
name='sphinx_selective_exclude',
version=VERSION,
url=PROJECT_URL,
download_url=PROJECT_URL + '/tarball/' + VERSION,
license='MIT license',
author='Paul Sokolovsky',
author_email='pfalcon@users.sourceforge.net',
description='Sphinx eager ".. only::" directive and other selective rendition extensions',
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Documentation',
'Topic :: Utilities',
],
platforms='any',
packages=find_packages(),
include_package_data=True,
install_requires=None,
namespace_packages=[],
keywords = ['sphinx', 'only', 'plugin'],
)