-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
66 lines (55 loc) · 1.87 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
"""
fnExchange is a scalable, open source API layer (also called an API
"router") that provides a consistent proxy web interface for invoking
various web APIs without the caller having to write separate,
special-purpose code for each of them.
fnExchange is packaged as a command line interface executable
``fnexchange`` which starts the web service. The CLI also supports a
mode to run the service as a daemon.
Installation, usage and plugin development instructions can be found
on the project's `GitHub page <http://github.com/dnif/fnExchange>`_
"""
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
dependencies = [
'click==6.7',
'PyYAML==3.12',
'requests>=2.4.2',
'six==1.10.0',
'tornado==4.4.2',
]
setup(
name='fnexchange',
version='0.2.1',
url='https://github.com/dnif/fnExchange',
license='Apache',
author='Bhumil Haria',
author_email='bhumilharia@gmail.com',
description='fnExchange API router and management CLI',
long_description=__doc__,
keywords='fnexchange api router orchestration',
platforms='any',
install_requires=dependencies,
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'fnexchange = fnexchange.cli:cli',
],
},
classifiers=[
'Development Status :: 4 - Beta',
# 'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Operating System :: MacOS',
'Operating System :: Unix',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)