-
Notifications
You must be signed in to change notification settings - Fork 70
/
setup.py
29 lines (27 loc) · 960 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
28
29
from codecs import open
from setuptools import setup, find_packages
with open('README.rst', 'r', 'utf-8') as f:
readme = f.read()
setup(
name='sparkpost',
version='1.3.10',
author='SparkPost',
author_email='[email protected]',
packages=find_packages(),
url='https://github.com/SparkPost/python-sparkpost',
license='Apache 2.0',
description='SparkPost Python API client',
long_description=readme,
install_requires=['requests>=2.20.1'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Communications :: Email',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)