Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Commit

Permalink
Remove redundant use_2to3 option
Browse files Browse the repository at this point in the history
This fixes compatibility with newer versions of setuptools >= 58
where this option is not supported anymore. The source code is already
py2/py3 compatible.
  • Loading branch information
alhman committed Oct 5, 2021
1 parent bc67e37 commit 4ea1a5d
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
from setuptools import setup

__version__ = '0.9.10'
__version__ = '0.9.11'

setup(
name='simpleeval',
name='reportbro-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='Daniel Fairhead',
author_email='danthedeckie@gmail.com',
url='https://github.com/danthedeckie/simpleeval',
download_url='https://github.com/danthedeckie/simpleeval/tarball/' + __version__,
maintainer='Alex Hartmann',
maintainer_email='alex@reportbro.com',
url='https://github.com/jobsta/simpleeval',
download_url='https://github.com/jobsta/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',
Expand Down

0 comments on commit 4ea1a5d

Please sign in to comment.