forked from gawel/panoramisk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·56 lines (50 loc) · 1.54 KB
/
setup.py
File metadata and controls
executable file
·56 lines (50 loc) · 1.54 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
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
from setuptools import setup
from setuptools import find_packages
version = '1.4.dev0'
install_requires = []
test_requires = [
'pytest',
'pytest-asyncio<0.6.0' if sys.version_info < (3, 5) else 'pytest-asyncio',
'coverage',
'coveralls',
]
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name='panoramisk',
version=version,
description="asyncio based library to play with asterisk",
long_description=read('README.rst'),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Communications :: Telephony',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords=['asyncio', 'asterisk', 'voip'],
author='Gael Pasgrimaud',
author_email='gael@gawel.org',
url='https://github.com/gawel/panoramisk/',
license='MIT license',
packages=find_packages(exclude=['docs', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
tests_require=test_requires,
extras_require={
'test': test_requires,
},
entry_points='''
[console_scripts]
panoramisk = panoramisk.command:main
'''
)