diff options
author | Paul McGuire <ptmcg@austin.rr.com> | 2019-04-07 07:42:20 -0500 |
---|---|---|
committer | Paul McGuire <ptmcg@austin.rr.com> | 2019-04-07 07:42:20 -0500 |
commit | 76b3af7f25d0f25d4eb7f0849a23e22b5b2a0297 (patch) | |
tree | 53ae14557c3bbbe7545983ee7414f442f2fe4d07 /setup.py | |
parent | a2439508ba5c94546db98593cfa676de9b59babe (diff) | |
download | pyparsing-git-76b3af7f25d0f25d4eb7f0849a23e22b5b2a0297.tar.gz |
Improved support for "python setup.py test"
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 77 |
1 files changed, 39 insertions, 38 deletions
@@ -1,38 +1,39 @@ -#!/usr/bin/env python
-
-"""Setup script for the pyparsing module distribution."""
-
-from setuptools import setup
-from pyparsing import __version__ as pyparsing_version
-
-modules = ["pyparsing",]
-
-setup(# Distribution meta-data
- name = "pyparsing",
- version = pyparsing_version,
- description = "Python parsing module",
- author = "Paul McGuire",
- author_email = "ptmcg@users.sourceforge.net",
- url = "https://github.com/pyparsing/pyparsing/",
- download_url = "https://pypi.org/project/pyparsing/",
- license = "MIT License",
- py_modules = modules,
- python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*',
- classifiers=[
- 'Development Status :: 5 - Production/Stable',
- 'Intended Audience :: Developers',
- 'Intended Audience :: Information Technology',
- 'License :: OSI Approved :: MIT License',
- 'Operating System :: OS Independent',
- 'Programming Language :: Python',
- 'Programming Language :: Python :: 2',
- 'Programming Language :: Python :: 2.6',
- 'Programming Language :: Python :: 2.7',
- 'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.3',
- 'Programming Language :: Python :: 3.4',
- 'Programming Language :: Python :: 3.5',
- 'Programming Language :: Python :: 3.6',
- 'Programming Language :: Python :: 3.7',
- ]
- )
+#!/usr/bin/env python + +"""Setup script for the pyparsing module distribution.""" + +from setuptools import setup +from pyparsing import __version__ as pyparsing_version + +modules = ["pyparsing",] + +setup(# Distribution meta-data + name = "pyparsing", + version = pyparsing_version, + description = "Python parsing module", + author = "Paul McGuire", + author_email = "ptmcg@users.sourceforge.net", + url = "https://github.com/pyparsing/pyparsing/", + download_url = "https://pypi.org/project/pyparsing/", + license = "MIT License", + py_modules = modules, + python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*', + test_suite="unitTests.suite", + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'Intended Audience :: Information Technology', + 'License :: OSI Approved :: MIT License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + ] + ) |