forked from sippy/b2bua
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (24 loc) · 801 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (24 loc) · 801 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
#!/usr/bin/env python2
from setuptools import setup, find_packages
requirements = [x.strip() for x in open("requirements.txt", "r").readlines()]
setup(
name="sippy-tbs",
version="2022.7.2.dev0",
packages=find_packages(),
# install_requires = requirements,
package_data={"": ["dictionary", "*.md"]},
test_suite="tests",
entry_points={
"console_scripts": [
"b2bua_simple = sippy.b2bua_simple:main_func",
"b2bua_radius = sippy.b2bua_radius:main_func",
],
},
# meta-data for upload to PyPi
author="Sippy Software, Inc.",
author_email="sales@sippysoft.com",
description="SIP RFC3261 Back-to-back User Agent (B2BUA)",
license="BSD",
keywords="sip b2bua voip rfc3261 sippy",
url="http://www.b2bua.org/",
)