forked from ged-flod/python_orange_sms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (32 loc) · 1.08 KB
/
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
30
31
32
33
34
35
36
37
38
from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()
with open('HISTORY.md') as history_file:
HISTORY = history_file.read()
setup_args = dict(
name='python_orange_sms',
version='0.1.1',
description='Sending sms to orange api with python',
long_description_content_type="text/markdown",
long_description=README + '\n\n' + HISTORY,
license='MIT',
packages=find_packages(),
author='Ged-flod',
contributors=[{'name': 'Samuel Nde', 'email': 'ndesamuelmbah@gmail.com', 'github': 'ndesamuelmbah'}]
author_email='gedeon@comptelab.com',
keywords=['orange sms', 'python orange sms', 'python-orange-sms', 'python-orange'],
url='https://github.com/ged-flod/python_orange_sms',
download_url='https://pypi.org/project/python_orange_sms/'
)
setup(
include_package_data=True
)
install_requires = [
'requests==2.25.1',
'certifi==2020.12.5',
'chardet==4.0.0',
'idna==2.10',
'urllib3==1.26.4'
]
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)