forked from thunderpush/python-thunderclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 741 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='thunderclient',
version='1.0.0',
author='Krzysztof Jagiello',
author_email='[email protected]',
description='A Python library for sending messages to Thunderpush server.',
packages=find_packages(),
zip_safe=False,
license='BSD',
include_package_data=True,
url='https://github.com/thunderpush/python-thunderclient',
install_requires=[
'requests>=2.7.0',
],
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
],
)