-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (32 loc) · 914 Bytes
/
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
# Copyright 2018 (c) Herbert Shin https://github.com/initbar/sipd
#
# This source code is licensed under the MIT license.
from setuptools import find_packages
from setuptools import setup
from sipd.version import VERSION
setup(
name="sipd",
packages=find_packages(),
description="active-recording Session Initiation Protocol daemon",
url="https://github.com/initbar/sipd",
version=VERSION,
license="MIT",
author="Herbert Shin",
author_email="[email protected]",
keywords = [
"active-record",
"genesys",
"rtp",
"rtp-proxy",
"sip",
"sip-client",
"sip-server",
],
classifiers=[
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)