forked from danthedeckie/simpleeval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (22 loc) · 943 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
from setuptools import setup
__version__ = '0.8.7'
setup(
name = 'simpleeval',
py_modules = ['simpleeval'],
version = __version__,
description = 'A simple, safe single expression evaluator library.',
long_description=open('README.rst','r').read(),
author = 'Daniel Fairhead',
author_email = '[email protected]',
url = 'https://github.com/danthedeckie/simpleeval',
download_url = 'https://github.com/danthedeckie/simpleeval/tarball/' + __version__,
keywords = ['eval', 'simple', 'expression', 'parse', 'ast'],
test_suite = 'test_simpleeval',
use_2to3 = True,
classifiers = ['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python',
],
)