-
Notifications
You must be signed in to change notification settings - Fork 72
/
setup.py
executable file
·42 lines (35 loc) · 1.14 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
42
#!/usr/bin/env python
from setuptools import setup, find_packages
requirements = [x.strip() for x in open("requirements.txt", "r").readlines()]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = "sippy",
version = "2.2.0",
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',
],
},
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'
],
)