-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·59 lines (54 loc) · 1.65 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
52
53
54
55
56
57
58
59
#!/usr/bin/env python3
# coding=utf-8
from setuptools import setup
from os import system
version = '3.0.1'
setup(
name='jutge-toolkit',
packages=['jutge.toolkit'],
install_requires=[
'jutge-util',
'pyyaml>=5.1',
'colorama',
'lizard',
'turtle-pil',
'easyinput',
'yogi',
'pytokr',
'beautifulsoup4',
'biopython',
'matplotlib',
'more-itertools',
'networkx',
'numpy',
# 'optilog', # currently not available for Python 3.12
'pandas',
'scipy',
'simpy',
],
version=version,
description='Toolkit to make problems for Jutge.org',
long_description='Toolkit to make problems for Jutge.org',
author='Jordi Petit et al',
author_email='[email protected]',
url='https://github.com/jutge-org/jutge-toolkit',
download_url='https://github.com/jutge-org/jutge-toolkit/tarball/{}'.format(version),
keywords=['jutge', 'jutge.org', 'education', 'problems', 'quizzes', 'toolkit'],
license='Apache',
zip_safe=False,
include_package_data=True,
setup_requires=['setuptools'],
entry_points={
'console_scripts': [
'jutge-make-problem=jutge.toolkit:problems.main',
'jutge-make-quiz=jutge.toolkit:quizzes.main',
'jutge-compilers=jutge.toolkit:compilers.main',
'jutge-available-compilers=jutge.toolkit:compilers.available_compilers',
'jutge-start=jutge.toolkit:start.main',
'jutge-code-metrics=jutge.toolkit:code_metrics.main',
'jutge-sanitize=jutge.toolkit:sanitize.main'
]
},
scripts=[
]
)