-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (37 loc) · 1.15 KB
/
setup.py
File metadata and controls
47 lines (37 loc) · 1.15 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(
name='sendbee_api',
version='1.7.1',
description='Python client SDK for Sendbee Public API',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/sendbee/sendbee-python-client',
licence='MIT',
author='Sendbee ltd',
author_email='info@sendbee.io',
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords='sendbee api python',
packages=find_packages(),
install_requires=[
'click>=7.0',
'requests>=2.20.0',
'dumpit>=0.5.0',
'aenum>=2.1.2',
'ujson==2.0.1',
'cryptography>=3.2'
],
project_urls={
'Source': 'https://github.com/sendbee/sendbee-python-client',
},
)