forked from sailthru/sailthru-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 782 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 782 Bytes
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
from setuptools import setup, find_packages
setup(name='sailthru-client',
version='2.0.3',
packages=find_packages(),
description='Python client for Sailthru API',
long_description=open('README.md').read(),
classifiers=[
"License :: OSI Approved :: MIT License",
"Topic :: Utilities",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Natural Language :: English",
],
install_requires=[
'requests >= 0.12.0',
'simplejson >= 2.0'
],
keywords='sailthru api',
author='Prajwal Tuladhar',
author_email='praj@sailthru.com',
url='https://github.com/sailthru/sailthru-python-client',
license='MIT License',
include_package_data=True,
zip_safe=True
)