-
-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 1.04 KB
/
setup.py
File metadata and controls
38 lines (34 loc) · 1.04 KB
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
"""
Python Circuit Breaker
"""
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
VERSION = '2.1.3'
setup(
name='circuitbreaker',
version=VERSION,
url='https://github.com/fabfuel/circuitbreaker',
download_url='https://github.com/fabfuel/circuitbreaker/archive/%s.tar.gz' % VERSION,
license='BSD-3-Clause',
author='Fabian Fuelling',
author_email='pypi@fabfuel.de',
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.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)