This repository has been archived by the owner on Sep 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (46 loc) · 1.39 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
50
51
"""
Package setup.
This file is used to package the whole project.
"""
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(
name='WHU-ScoreChecker',
version='1.0.2',
author='Tony Xiang',
author_email='tonyxfy@qq.com',
description='A simple, open-source and model-driven score checker for \
WHU.',
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/T0nyX1ang/WHU-ScoreChecker',
packages=setuptools.find_packages(include=['scorechecker',
'scorechecker.*']),
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Development Status :: 4 - Beta",
],
python_requires='>=3.5, <3.8',
entry_points={
'console_scripts': [
'scorechecker=scorechecker.main:run',
],
},
install_requires=[
'Keras>=2.3.1',
'lxml>=4.3.2',
'opencv_python>=4.1.0.25',
'keyring>=20.0.1',
'requests>=2.21.0',
'numpy>=1.16.2',
'pycryptodome>=3.9.6',
'beautifulsoup4>=4.7.1',
'tensorflow==2.0.1'
]
)