-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (34 loc) · 1 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
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
from setuptools import setup, find_packages
install_description = '''
pushcoapi
=====
Python library for Push.co
Installation
------------
You can get the code from `https://github.com/GuoJing/push.co`
'''
setup(
name='pushcoapi',
version='0.0.1',
license='GPLv3',
description='Python library for Push.co',
long_description=install_description,
author='GuoJing',
author_email='soundbbg@gmail.com',
url='http://github.com/GuoJing/push.co',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'requests',
],
)