-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (33 loc) · 843 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
30
31
32
33
34
35
# -*- coding: utf-8 -*-
import codecs
from setuptools import find_packages
from setuptools import setup
setup(
name='PopIn_doc-build',
version='3.0',
author='David Mercier',
author_email='[email protected]',
url='https://popin.readthedocs.io',
license='GPL',
description='Build infrastructure for PopIn toolbox',
packages=find_packages(),
include_package_data=True,
long_description=codecs.open("README.rst", "r", "utf-8").read(),
install_requires=[
"PyYAML>=3.0",
"Sphinx>=1.5.2",
"Docutils",
"readthedocs-sphinx-ext",
"recommonmark",
"click>=4.0",
"virtualenv",
"six",
"mock"
],
entry_points={
'console_scripts': [
'rtd-build=readthedocs_build.cli:main',
]
},
zip_safe=True,
)