read()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
dl 0
loc 2
rs 10
1
import os
2
3
from setuptools import setup
4
5
6
def read(fname):
7
    return open(os.path.join(os.path.dirname(__file__), fname)).read()
8
9
10
setup(
11
    name='Flask-Material',
12
    version='0.1.1',
13
    url='https://github.com/HellerCommaA/flask-materialize',
14
    license='MIT',
15
    author='Adam Heller',
16
    author_email='[email protected]',
17
    description='An extension that includes Materialize CSS (http://materializecss.com/) in your '
18
                'project, without any boilerplate code.',
19
    long_description=read('README.rst'),
20
    packages=['flask_material'],
21
    zip_safe=False,
22
    include_package_data=True,
23
    platforms='any',
24
    install_requires=[
25
        'Flask>=0.8',
26
    ],
27
    classifiers=[
28
        'Environment :: Web Environment',
29
        'Intended Audience :: Developers',
30
        'License :: OSI Approved :: MIT License',
31
        'Operating System :: OS Independent',
32
        'Programming Language :: Python',
33
        'Programming Language :: Python :: 2',
34
        'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
35
        'Topic :: Software Development :: Libraries :: Python Modules'
36
    ]
37
)
38