-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 722 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 722 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
25
from setuptools import setup
setup(
name='pytelebirr',
version='0.2.4',
packages=['pytelebirr', 'pytelebirr.errors'],
url='https://github.com/telebirrapi/pytelebirr',
license='MIT License',
author='wizkiye',
author_email='wizkiye@gmail.com',
description='Telebirr with python ',
install_requires=[
"asyncio",
"requests",
"websocket-client"
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
]
)