Completed
Push — develop ( 48dbcc...f2e8f9 )
by Fabian
01:54
created

readme()   A

Complexity

Conditions 2

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 1
Metric Value
cc 2
c 1
b 1
f 1
dl 0
loc 3
rs 10
1
"""
2
Python Circuit Breaker
3
"""
4
from setuptools import find_packages, setup
5
6
7
def readme():
8
    with open('README.rst') as f:
9
        return f.read()
10
11
dependencies = []
12
13
setup(
14
    name='circuitbreaker',
15
    version='1.0.0',
16
    url='https://github.com/fabfuel/circuitbreaker',
17
    download_url='https://github.com/fabfuel/circuitbreaker/archive/1.0.0.tar.gz',
18
    license='BSD',
19
    author='Fabian Fuelling',
20
    author_email='[email protected]',
21
    description='Python Circuit Breaker pattern implementation',
22
    long_description=readme(),
23
    py_modules=['circuitbreaker'],
24
    include_package_data=True,
25
    zip_safe=False,
26
    platforms='any',
27
    install_requires=dependencies,
28
    classifiers=[
29
        'Intended Audience :: Developers',
30
        'License :: OSI Approved :: BSD License',
31
        'Operating System :: POSIX',
32
        'Operating System :: MacOS',
33
        'Operating System :: Unix',
34
        'Programming Language :: Python',
35
        'Programming Language :: Python :: 2',
36
        'Programming Language :: Python :: 3',
37
    ]
38
)
39