1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="PyPump",
version="0.3",
description="Python Pump.io library",
long_description=open("README.rst").read(),
author="Jessica Tallon",
author_email="tfmyz@inboxen.org",
url="https://github.com/xray7224/PyPump",
packages=["pypump", "pypump.exception", "pypump.models"],
license="GPLv3",
install_requires=[
"requests-oauthlib>=0.3.0",
"requests>=1.2.0",
"nose",
"python-dateutil>=2.1",
],
classifiers=[
"Development Status :: 3 - Alpha",
"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 :: Implementation :: CPython",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: BeOS",
"Intended Audience :: Developers",
"License :: OSI Approved",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
)
|