forked from danthedeckie/simpleeval
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 945 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 945 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
from setuptools import setup
__version__ = '0.9.11'
setup(
name='simpleeval',
py_modules=['simpleeval'],
version=__version__,
description='A simple, safe single expression evaluator library.',
long_description=open('README.rst', 'r').read(),
long_description_content_type='text/x-rst',
author='IVR Technology Group',
author_email='developers@ivrtechnology.com',
url='https://github.com/IVRTech/simpleeval/',
download_url='https://github.com/IVRTech/simpleeval/releases/tag/' + __version__,
keywords=['eval', 'simple', 'expression', 'parse', 'ast'],
test_suite='test_simpleeval',
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python',
],
)