forked from wolph/mailjet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 676 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 676 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
import os
import setuptools
if os.path.isfile('README.rst'):
long_description = open('README.rst').read()
else:
long_description = 'See http://pypi.python.org/pypi/mailjet/'
setuptools.setup(
name='mailjet',
version='1.4.0',
author='Rick van Hattem',
author_email='Rick.van.Hattem@Fawo.nl',
description='mailjet is a django app to implement the mailjet REST API',
url='https://github.com/WoLpH/mailjet',
license='BSD',
packages=setuptools.find_packages(),
long_description=long_description,
test_suite='nose.collector',
tests_require=['nose'],
classifiers=[
'License :: OSI Approved :: BSD License',
],
)