-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 787 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 787 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
from setuptools import setup
setup(
name='postal-admin-client',
version='0.1.1',
url="https://github.com/ZettaIO/postal-admin-client",
description="Python admin client for the open source mail delivery platform Postal",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author="Einar Forselv",
author_email="eforselv@gmail.com",
packages=['postal_admin_client'],
install_requires=[
'requests>=2.22',
'beautifulsoup4>=4.7',
],
keywords = ['postal', 'admin', 'client'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)