-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
29 lines (26 loc) · 894 Bytes
/
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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(BASE_DIR, "README.rst")) as f:
LONG_DESCRIPTION = f.read()
setup(
name='sphinxcontrib-trimblank',
version='1.0.3',
description='A Sphinx extension which trims redundant blanks',
long_description=LONG_DESCRIPTION,
url='https://github.com/amedama41/sphinxcontrib-trimblank',
author='amedama41',
author_email='[email protected]',
keywords=['sphinx', 'extension'],
packages=['sphinxcontrib'],
namespace_packages=['sphinxcontrib'],
install_requires=["Sphinx"],
python_requires='>=3.5.*',
classifiers=[
'Framework :: Sphinx :: Extension',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Documentation :: Sphinx',
]
)