-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (22 loc) · 792 Bytes
/
setup.py
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
#!/usr/bin/env python
import os
import setuptools
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'requirements.txt')) as f:
requirements = f.read()
with open(os.path.join(here, 'README.md')) as f:
long_description = f.read()
setuptools.setup(
name="unofficial-dt-sms-api-sdk",
description="Unofficial Python-SDK for the SMS API of Deutsche Telekom",
long_description=long_description,
long_description_content_type='text/markdown',
version="1.0.3",
url="https://github.com/Anrufliste/dt-sms-api-sdk-python",
author='Emil Thies',
author_email='uDTSMSAPISDK@anrufliste.com',
python_requires='>=3.7',
packages=['dt_sms_sdk'],
package_dir={'dt_sms_sdk': 'dt_sms_sdk'},
install_requires=requirements
)