forked from rowanG077/sphinx-multibuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (40 loc) · 1.34 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
#!/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst')) as f:
long_description = f.read()
setup(
name='sphinx-multibuild',
packages=['sphinx_multibuild'],
version='1.1.1',
description='Allow sphinx to build with multiple source directories and watch for changes.',
long_description=long_description,
long_description_content_type='text/x-rst',
author='Rowan Goemans',
author_email='[email protected]',
url='https://github.com/rowanG077/sphinx-multibuild',
download_url='https://github.com/rowanG077/sphinx-multibuild/archive/1.1.1.tar.gz',
keywords=['sphinx', 'autobuild', 'multiple-directories'],
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
install_requires=['watchdog', 'sphinx'],
python_requires='>=2.7',
package_data={
'sphinx_multibuild': ['README.rst'],
},
entry_points={
'console_scripts': [
'sphinx-multibuild=sphinx_multibuild.sphinx_multibuild:main'
]
},
)