-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (24 loc) · 739 Bytes
/
setup.py
File metadata and controls
30 lines (24 loc) · 739 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
from setuptools import setup
long_description = ""
try:
import subprocess
import pypandoc
long_description = pypandoc.convert_file("README.md", to="rst", format="md")
except ImportError:
pass
setup(
name="asterisk_dialplan",
version="0.2.0",
author="Andrew Yager",
author_email="andrew@rwts.com.au",
license="BSD",
packages=["asterisk_dialplan"],
description="Helpers to convert numbers to dialplan strings for use in Asterisk",
long_description=long_description,
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Communications :: Telephony",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: BSD License",
],
)