forked from rdegges/pycall
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (24 loc) · 817 Bytes
/
setup.py
File metadata and controls
33 lines (24 loc) · 817 Bytes
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
"""Handles packaging, distribution, and testing."""
from setuptools import setup
from setuptools import find_packages
setup(
# Basic package information.
name = 'pycall',
version = '2.2',
packages = find_packages(),
# Packaging options.
zip_safe = False,
include_package_data = True,
# Package dependencies.
install_requires = ['path.py>=2.2.2'],
tests_require = ['coverage>=3.4', 'nose>=0.11.4'],
# Metadata for PyPI.
author = 'Randall Degges',
author_email = 'rdegges@gmail.com',
license = 'UNLICENSE',
url = 'http://pycall.org/',
keywords = 'asterisk callfile call file telephony voip',
description = 'A flexible python library for creating and using Asterisk' \
' call files.',
long_description = open('README.md').read()
)