forked from online-judge-tools/oj
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (25 loc) · 732 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·26 lines (25 loc) · 732 Bytes
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
#!/usr/bin/env python3
import onlinejudge_command.__about__ as version
from setuptools import find_packages, setup
setup(
name=version.__package_name__,
version=version.__version__,
author=version.__author__,
author_email=version.__email__,
url=version.__url__,
license=version.__license__,
description=version.__description__,
python_requires='>=3.5',
install_requires=[
'online-judge-api-client >= 10.0.3, < 11',
'colorama >= 0.3',
'diff-match-patch >= 20181111',
'requests >= 2',
],
packages=find_packages(exclude=('tests', 'docs')),
entry_points={
'console_scripts': [
'oj = onlinejudge_command.main:main',
],
},
)