Passed
Push — master ( 2eb378...6b8441 )
by dai
01:33
created

setup.read()   A

Complexity

Conditions 1

Size

Total Lines 4
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nop 1
1
#!/usr/bin/env python
2
# coding=utf-8
3
4
from setuptools import setup, find_packages
5
6
7
with open('README.md', 'rb') as f:
8
    long_description = f.read().decode('utf-8')
9
10
11
setup(
12
    name="School-Api",
13
    author="dairoot",
14
    version="1.0",
15
    license='MIT',
16
    author_email="[email protected]",
17
    description="School SDK for Python",
18
    long_description=long_description,
19
    url='https://github.com/dairoot/school-api',
20
    packages=find_packages(),
21
    package_data={'school_api': ['check_code/theta.dat'], },
22
    include_package_data=True,
23
    platforms='any',
24
    zip_safe=False,
25
26
    install_requires=[
27
        'requests',
28
        'redis',
29
        'bs4',
30
        'Image',
31
        'numpy'
32
    ],
33
    classifiers=[
34
        'Environment :: Web Environment',
35
        'Intended Audience :: Developers',
36
        'License :: OSI Approved :: MIT License',
37
        'Operating System :: OS Independent',
38
        'Programming Language :: Python :: 2.7',
39
        'Programming Language :: Python :: 3',
40
        'Programming Language :: Python :: 3.3',
41
        'Programming Language :: Python :: 3.4',
42
        'Programming Language :: Python :: 3.5',
43
        'Programming Language :: Python :: 3.6',
44
        'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
45
        'Topic :: Software Development :: Libraries :: Python Modules'
46
    ]
47
48
)
49