forked from sailthru/sailthru-python-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (26 loc) · 829 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
26
27
from setuptools import setup, find_packages
setup(name='sailthru-client',
version='2.2.2.2',
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",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Natural Language :: English",
],
install_requires=[
'requests >= 2.4',
'simplejson >= 3.0.7'
],
keywords='sailthru api',
author='Sailthru Inc.',
author_email='[email protected]',
url='https://github.com/sailthru/sailthru-python-client',
license='MIT License',
include_package_data=True,
zip_safe=True
)