-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 1.11 KB
/
setup.py
File metadata and controls
30 lines (28 loc) · 1.11 KB
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
30
import os
from setuptools import setup, find_packages
long_description = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
setup(name='ExpressPigeon',
version='0.0.8',
description='ExpressPigeon API',
long_description=long_description,
author='Gleb Galkin',
author_email='gleb@expresspigeon.com',
license='BSD',
packages=find_packages(exclude=['*.tests', '*.tests.*', 'tests.*', 'tests']),
keywords=' '.join(['expresspigeon',
'api',
'email',
'marketing',
'transactional'
]),
url='https://github.com/expresspigeon/expresspigeon-python',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Communications :: Email',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
tests_require=['pytz'])