-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (23 loc) · 848 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
from setuptools import setup
__version__ = "0.5.2"
setup(
name="sneklang",
py_modules=["sneklang"],
version=__version__,
description="Experimental minimal subset of Python for safe evaluation",
long_description=open("README.rst", "r").read(),
long_description_content_type="text/x-rst",
author="Timoth Watts",
author_email="[email protected]",
url="https://github.com/readevalprint/sneklang",
keywords=["sandbox", "parse", "ast"],
test_suite="test_snek",
install_requires=["pytest", "ConfigArgParse", "python-forge"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
],
)