forked from online-judge-tools/verification-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·31 lines (30 loc) · 890 Bytes
/
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
#!/usr/bin/env python3
from setuptools import find_packages, setup
setup(
name='online-judge-verify-helper',
version='4.12.1',
author='Kimiyuki Onaka',
author_email='kimiyuki95@gmail.com',
url='https://github.com/kmyk/online-judge-verify-helper',
license='MIT License',
description='',
python_requires='>=3.6',
install_requires=[
'colorlog',
'pyyaml',
'online-judge-tools >= 8.0.0',
'setuptools',
'toml',
'importlab',
],
packages=find_packages(exclude=('tests', 'docs')),
package_data={
'onlinejudge_verify_resources': ['*', '_layouts/*', '_includes/*', 'assets/*', 'assets/css/*', 'assets/js/*'],
},
entry_points={
'console_scripts': [
'oj-verify = onlinejudge_verify.main:main',
'oj-bundle = onlinejudge_bundle.main:main',
],
},
)