-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·44 lines (37 loc) · 1.21 KB
/
setup.py
File metadata and controls
executable file
·44 lines (37 loc) · 1.21 KB
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
42
43
44
#!/usr/bin/env python
from setuptools import setup, find_packages
requirements = [
line.strip()
for line in open("requirements.txt", "r", encoding="utf-8").readlines()
if line.strip() and not line.lstrip().startswith("#")
]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = "sippy",
version = "2.3.0",
packages = find_packages(),
install_requires = requirements,
include_package_data=True,
entry_points = {
'console_scripts': [
'b2bua_simple = sippy.b2bua_simple:main_func',
'b2bua_radius = sippy.b2bua:main_func',
'b2bua = sippy.b2bua:main_func',
],
},
long_description = long_description,
long_description_content_type = "text/markdown",
# meta-data for upload to PyPi
author = "Sippy Software, Inc.",
author_email = "sobomax@sippysoft.com",
description = "RFC3261 SIP Stack and Back-to-Back User Agent (B2BUA)",
license = "BSD",
keywords = "sip,b2bua,voip,rfc3261,sippy",
url = "http://www.b2bua.org/",
classifiers = [
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python'
],
)