-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
34 lines (32 loc) · 1.24 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
from setuptools import find_packages
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='pyami_asterisk',
version='1.5.2',
description='pyami_asterisk is a library based on python’s AsyncIO with Asterisk AMI',
author='Denis Streltsov',
author_email='sdv.streltsov@gmail.com',
url='https://github.com/streltsovdenis/pyami_asterisk.git',
keywords=["AMI", "Asterisk", "asyncio", "python"],
install_requires=["loguru==0.6.0"],
license='MIT license',
packages=find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Communications :: Telephony',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)