-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
49 lines (44 loc) · 1.45 KB
/
setup.py
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
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
with open('README.md', 'rb') as f:
long_description = f.read().decode('utf-8').split("## User permissions")[0]
setup(
name="School-Api",
author="dairoot",
version="1.5.6",
license='MIT',
author_email="623815825@qq.com",
description="School SDK for Python",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/dairoot/school-api',
packages=find_packages(),
package_data={'school_api': ['check_code/theta.dat'], },
include_package_data=True,
platforms='any',
zip_safe=False,
install_requires=[
'six',
'requests',
'redis',
'bs4',
'pillow',
'numpy'
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)