-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 966 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 966 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
26
27
28
29
30
31
32
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.5.0',
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='Martin.Lang@rwth-aachen.de',
description='An (asyncio enabled) python library for yate IVRs and extmodules',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
],
entry_points={
"console_scripts": [
"yate_callgen=yate.callgen:main",
],
},
)