forked from jazzycamel/pushingbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1.07 KB
/
setup.py
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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="PushingBox",
version="0.1.3",
author="Rob Kent",
author_email="jazzycamel@googlemail.com",
description="A very simple Python client for the PushingBox Notification service API.",
license="MIT",
keywords="PushingBox Notification API",
url="https://github.com/jazzycamel/pushingbox",
packages=find_packages(exclude=['docs','tests']),
install_requires=['requests'],
long_description=read("README.md"),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"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",
"License :: OSI Approved :: MIT License",
]
)