-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (33 loc) · 1.04 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
from setuptools import setup
import os
this_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_dir, "README.md"), "r") as f:
long_description = f.read()
setup(
name='python-yate',
version='0.4.1',
packages=['yate'],
url='https://github.com/eventphone/python-yate',
license='MIT',
author='Martin Lang',
long_description=long_description,
long_description_content_type="text/markdown",
author_email='[email protected]',
description='An (asyncio enabled) python library for yate IVRs and extmodules',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
],
install_requires=[
'async_timeout',
],
entry_points={
"console_scripts": [
"yate_callgen=yate.callgen:main",
],
},
)