-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 943 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 943 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
from setuptools import setup
import os.path
setup(
name='mandrill',
version='1.1',
author='Mandrill Devs + Reposit Power',
author_email='community@mandrill.com',
description='A CLI client and Python API library for the Mandrill email as a service platform.',
long_description=open(os.path.join(os.path.dirname(__file__), 'README')).read(),
license='Apache-2.0',
keywords='mandrill email api',
url='https://github.com/RepositPower/mandrill-py3/',
scripts=['scripts/mandrill', 'scripts/sendmail.mandrill'],
py_modules=['mandrill'],
install_requires=['requests >= 0.13.2', 'docopt == 0.4.0'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Topic :: Communications :: Email'
]
)