setup.py 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. # -*- coding: utf-8 -*-
  2. # This program is free software: you can redistribute it and/or modify
  3. # it under the terms of the GNU General Public License as published by
  4. # the Free Software Foundation, either version 3 of the License, or
  5. # (at your option) any later version.
  6. #
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. # GNU General Public License for more details.
  11. #
  12. # You should have received a copy of the GNU General Public License
  13. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. from sys import version_info
  15. from warnings import warn
  16. try:
  17. from setuptools import setup
  18. except ImportError:
  19. from distutils.core import setup
  20. setup(
  21. name="p",
  22. version="0.1",
  23. description="A command-line Pump.io tool",
  24. long_description=open("README.md").read(),
  25. author="Jessica Tallon",
  26. #author_email="",
  27. scripts=['p'],
  28. url="https://github.com/xray7224/p",
  29. license="GPLv3+",
  30. install_requires=[
  31. "pypump",
  32. "click",
  33. "colorama",
  34. "pytz",
  35. "six",
  36. "html2text"
  37. ],
  38. dependency_links=[
  39. "https://github.com/xray7224/PyPump/tarball/master#egg=pypump-0.6",
  40. "https://github.com/mitsuhiko/click/tarball/master#egg=click-2.0-dev",
  41. ],
  42. classifiers=[
  43. "Development Status :: 3 - Alpha",
  44. "Programming Language :: Python",
  45. "Programming Language :: Python :: 2",
  46. "Programming Language :: Python :: 2.6",
  47. "Programming Language :: Python :: 2.7",
  48. "Programming Language :: Python :: 3",
  49. "Programming Language :: Python :: 3.3",
  50. "Programming Language :: Python :: Implementation :: CPython",
  51. "Operating System :: OS Independent",
  52. "Operating System :: POSIX",
  53. "Operating System :: Microsoft :: Windows",
  54. "Operating System :: MacOS :: MacOS X",
  55. "Intended Audience :: Developers",
  56. "License :: OSI Approved",
  57. "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
  58. "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
  59. ],
  60. )