forked from elviejokike/flask-eureka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 783 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
"""
flask-eureka
-------------
flask extension that provides an interface to eureka via a flask.app
"""
from setuptools import setup, find_packages
setup(
name='flask-eureka',
version='0.0.7',
author='Kike',
url='https://github.com/elviejokike/flask-eureka',
keywords=[
'microservice',
'netflix',
'flask',
'eureka'
],
packages=find_packages(exclude=['tests*', 'examples*']),
include_package_data=True,
install_requires=['Flask', 'dnspython'],
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)