setup   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 21
dl 0
loc 23
rs 10
c 0
b 0
f 0
1
from codecs import open as codecs_open
2
from setuptools import setup, find_packages
3
4
5
setup(
6
    name='pyrandimg',
7
    version='0.0.1',
8
    description=u"Python package for generating beautiful random images using Rand-Img provider for Fake package",
9
    long_description='Provider for joke2k/faker package. It generates random image and gif URLs and download them',
10
    classifiers=[],
11
    keywords='',
12
    author=u"Siro Díaz",
13
    author_email='[email protected]',
14
    url='https://github.com/SiroDiaz/pyrandimg',
15
    license='MIT',
16
    packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
17
    include_package_data=True,
18
    zip_safe=False,
19
    setup_requires=[],
20
    tests_require=[],
21
    install_requires=[
22
        'Faker'
23
    ],
24
)
25