-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
54 lines (44 loc) · 1.44 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
45
46
47
48
49
50
51
52
53
54
# -*- coding: utf-8 -*-
"""
Autodoc
~~~~~~~
Autodoc Python implementation.
`Ruby autodoc <https://github.com/r7kamura/autodoc>`_
`Perl autodoc <https://metacpan.org/pod/Test::JsonAPI::Autodoc>`_
:copyright: (c) 2014-2018 Shinya Ohyanagi, All rights reserved.
:license: BSD, see LICENSE for more details.
"""
import os
from setuptools import find_packages, setup
requires = ['webtest', 'decorator']
app_name = 'autodoc'
rst_path = os.path.join(os.path.dirname(__file__), 'README.rst')
description = ''
with open(rst_path) as f:
description = f.read()
setup(
name=app_name,
version='0.5.0',
author='Shinya Ohyanagi',
author_email='sohyanagi@gmail.com',
url='http://github.com/heavenshell/py-autodoc',
description='Autodoc Python implementation.',
long_description=description,
license='BSD',
platforms='any',
packages=find_packages(exclude=['tests', 'examples', 'docs']),
package_dir={'': '.'},
install_requires=requires,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Testing',
],
tests_require=['webtest', 'requests', 'mock'],
test_suite='tests',
)