-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.py
36 lines (32 loc) · 992 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
31
32
33
34
35
36
"""
Python Circuit Breaker
"""
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='circuitbreaker',
version='2.0.0',
url='https://github.com/fabfuel/circuitbreaker',
download_url='https://github.com/fabfuel/circuitbreaker/archive/1.3.1.tar.gz',
license='BSD-3-Clause',
author='Fabian Fuelling',
author_email='[email protected]',
description='Python Circuit Breaker pattern implementation',
long_description=readme(),
py_modules=['circuitbreaker'],
include_package_data=True,
zip_safe=False,
platforms='any',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Operating System :: MacOS',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
options={'bdist_wheel': {'universal': True}}
)