setup.py 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. import sys, os
  2. from setuptools import setup, find_packages
  3. import argparse
  4. long_description = open('README.txt').read()
  5. setup_args = dict(
  6. name="argparse",
  7. version=argparse.__version__,
  8. description='Python command-line parsing library',
  9. long_description=long_description,
  10. author="Thomas Waldmann",
  11. author_email="tw@waldmann-edv.de",
  12. url="https://github.com/ThomasWaldmann/argparse/",
  13. license="Python Software Foundation License",
  14. keywords="argparse command line parser parsing",
  15. platforms="any",
  16. classifiers="""\
  17. Development Status :: 5 - Production/Stable
  18. Environment :: Console
  19. Intended Audience :: Developers
  20. License :: OSI Approved :: Python Software Foundation License
  21. Operating System :: OS Independent
  22. Programming Language :: Python
  23. Programming Language :: Python :: 2
  24. Programming Language :: Python :: 3
  25. Programming Language :: Python :: 2.3
  26. Programming Language :: Python :: 2.4
  27. Programming Language :: Python :: 2.5
  28. Programming Language :: Python :: 2.6
  29. Programming Language :: Python :: 2.7
  30. Programming Language :: Python :: 3.0
  31. Programming Language :: Python :: 3.1
  32. Programming Language :: Python :: 3.2
  33. Programming Language :: Python :: 3.3
  34. Programming Language :: Python :: 3.4
  35. Topic :: Software Development""".splitlines(),
  36. py_modules=['argparse'],
  37. )
  38. if __name__ == '__main__':
  39. setup(**setup_args)