-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
executable file
·41 lines (33 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
#!/usr/bin/env python2
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 = "voiptests",
version = "1.0.1",
packages = ['voiptests', 'voiptests.lib', 'voiptests.test_cases'],
package_dir = {'voiptests': '.'},
install_requires = requirements,
test_suite = 'tests',
entry_points = {
'console_scripts': [
'alice_ua = voiptests.alice_main:main_func',
'bob_ua = voiptests.bob_main:main_func',
],
},
long_description = long_description,
long_description_content_type = "text/markdown",
# meta-data for upload to PyPi
author = "Sippy Software, Inc.",
author_email = "[email protected]",
description = "VoIP Integrated Tests Suite",
license = "BSD",
keywords = "ci,sip,b2bua,voip,rfc3261,sippy",
url = "https://github.com/sippy/voiptests/",
classifiers = [
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python'
],
)