-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
executable file
·37 lines (35 loc) · 1.04 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
#!/usr/bin/env python3
from setuptools import find_packages, setup
from onlinejudge_template.__about__ import __title__, __url__, __version__
setup(
name=__title__,
version=__version__,
author='Kimiyuki Onaka',
author_email='[email protected]',
url=__url__,
license='MIT License',
description='A simple template generator for competitive programming',
python_requires='>=3.6',
install_requires=[
'appdirs >= 1.4',
'beautifulsoup4 >= 4.8',
'colorlog >= 4.2.1',
'Mako >= 1.1',
'online-judge-api-client >= 10.8.0',
'online-judge-tools >= 10',
'ply >= 3',
'pyyaml >= 5',
'requests >= 2.23',
'toml >= 0.10',
],
packages=find_packages(exclude=('tests', 'docs')),
package_data={
'onlinejudge_template_resources': ['*', 'template/*'],
},
entry_points={
'console_scripts': [
'oj-template = onlinejudge_template.main:main',
'oj-prepare = onlinejudge_prepare.main:main',
],
},
)