-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
executable file
·76 lines (63 loc) · 1.93 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import re
import os
import sys
description = """
Tapioca provides an easy way to make explorable Python API wrappers.
APIs wrapped by Tapioca follow a simple interaction pattern that works uniformly so
developers don't need to learn how to use a new coding interface/style for each service API.
Source code hosted on Github: https://github.com/vintasoftware/tapioca-wrapper
Documentation hosted by Readthedocs: http://tapioca-wrapper.readthedocs.io/en/stable/
"""
package = 'tapioca'
requirements = [
'requests[security]>=2.6',
'arrow>=0.6.0',
'six>=1',
'xmltodict>=0.9.2'
]
test_requirements = [
'responses>=0.5',
'mock>=1.3,<1.4'
]
def get_version(package):
"""
Return package version as listed in `__version__` in `init.py`.
"""
init_py = open(os.path.join(package, '__init__.py')).read()
return re.search("^__version__ = ['\"]([^'\"]+)['\"]", init_py, re.MULTILINE).group(1)
if sys.argv[-1] == 'version':
print(get_version(package))
sys.exit()
setup(
name='tapioca-wrapper',
version=get_version(package),
description='Python API client generator',
long_description=description,
author='Filipe Ximenes',
author_email='filipeximenes@gmail.com',
url='https://github.com/vintasoftware/tapioca-wrapper',
packages=[
'tapioca',
],
package_dir={'tapioca': 'tapioca'},
include_package_data=True,
install_requires=requirements,
license="MIT",
zip_safe=False,
keywords='tapioca,wrapper,api',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
],
test_suite='tests',
tests_require=test_requirements
)