-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
28 lines (26 loc) · 1.06 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
"""setup.py"""
from setuptools import setup, find_packages
from uestc import __version__, __author__, __name__, __doc__
setup(author=__author__,
author_email='[email protected]',
maintainer=__author__,
name=__name__,
packages=find_packages(exclude=('test', 'test.*')),
long_description=open('README.rst', encoding='utf-8').read(),
version=__version__,
keywords='uestc catch course login',
description=__doc__,
url="https://github.com/plusls/uestc",
install_requires=['bs4',
'requests', 'Crypto', 'pycryptodome'],
classifiers=[
'Environment :: Console',
'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',
'Topic :: Software Development :: Libraries :: Python Modules',
],)