update setup.py to use setuptools not distutils

This commit is contained in:
parrt 2017-12-10 12:28:05 -08:00
parent e0aa817929
commit d674274f99
2 changed files with 5 additions and 6 deletions

View File

@ -347,8 +347,7 @@ Then run the usual python set up stuff:
```bash
cd ~/antlr/code/antlr4/runtime/Python2
# assume you have ~/.pypirc set up
python setup.py register -r pypi
python setup.py sdist bdist_wininst upload -r pypi
python2 setup.py sdist upload
```
and do again for Python 3 target

View File

@ -1,13 +1,13 @@
from distutils.core import setup
from setuptools import setup
setup(
name='antlr4-python2-runtime',
version='4.7.1',
packages=['antlr4', 'antlr4.atn', 'antlr4.dfa', 'antlr4.tree', 'antlr4.error', 'antlr4.xpath'],
package_dir={'': 'src'},
url='http://www.antlr.org',
license='BSD',
packages=['antlr4', 'antlr4.atn', 'antlr4.dfa', 'antlr4.tree', 'antlr4.error', 'antlr4.xpath'],
package_dir={'': 'src'},
author='Eric Vergnaud, Terence Parr, Sam Harwell',
author_email='eric.vergnaud@wanadoo.fr',
description='ANTLR 4.7.1 runtime for Python 2.7.6'
description='ANTLR 4.7.1 runtime for Python 2.7.12'
)