forked from openedx/codejail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 717 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""CodeJail: manages execution of untrusted code in secure sandboxes."""
from setuptools import setup
setup(
name="codejail",
version="2.3.2",
packages=['codejail'],
zip_safe=False,
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Ubuntu",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)