forked from peterruggero/postmaster-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (20 loc) · 618 Bytes
/
setup.py
File metadata and controls
26 lines (20 loc) · 618 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
import os
from setuptools import setup, find_packages
from postmaster.version import VERSION
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
requires = [
]
setup(name='postmaster-python',
version=VERSION,
description='Library for postmaster.io service',
long_description=README,
author='Postmaster',
author_email='support@postmaster.com',
url='http://postmaster.io',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite='test',
install_requires=requires,
)