-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (38 loc) · 1.2 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
39
40
41
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="ywsd",
version="0.13.1",
packages=["ywsd"],
url="https://gitlab.rc5.de/eventphone/ywsd",
license="AGPLv3+",
author="Garwin (Martin Lang)",
long_description=long_description,
long_description_content_type="text/markdown",
author_email="[email protected]",
description="A yate routing engine for event telephone networks",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
],
install_requires=[
"aiopg",
"aiohttp",
"python-yate>=0.4",
"pyyaml",
"sqlalchemy==1.4.*",
],
entry_points={
"console_scripts": [
"ywsd_init_db=ywsd.objects:main",
"ywsd_engine=ywsd.engine:main",
],
},
)