-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
36 lines (33 loc) · 1.02 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
#!/usr/bin/env python
import sys
if sys.version_info < (3,5):
sys.exit("doctr requires Python 3.5 or newer")
from setuptools import setup
import versioneer
setup(
name='doctr',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author='Aaron Meurer and Gil Forsyth',
author_email='[email protected]',
url='https://github.com/drdoctr/doctr',
packages=['doctr', 'doctr.tests'],
description='Deploy docs from Travis to GitHub pages.',
long_description=open("README.rst").read(),
entry_points={'console_scripts': [ 'doctr = doctr.__main__:main']},
python_requires= '>=3.5',
install_requires=[
'pyyaml',
'requests',
'cryptography',
],
license="MIT",
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Documentation',
'Topic :: Software Development :: Documentation',
],
zip_safe=False,
)