forked from tayler6000/pyVoIP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.21 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
from setuptools import find_packages
from setuptools import setup
with open("README.md", "r", encoding='utf-8') as f:
long_description = f.read()
setup(
name='pyVoIP',
version='1.5.5.post1',
description='PyVoIP is a pure python VoIP/SIP/RTP library.',
long_description=long_description,
long_description_content_type="text/markdown",
author='Tayler Porter',
author_email='[email protected]',
url='https://github.com/tayler6000/pyVoIP',
project_urls={
"Bug Tracker": "https://github.com/tayler6000/pyVoIP/issues",
"Documentaiton": "https://pyvoip.readthedocs.io/"
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Telecommunications Industry",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Topic :: Communications :: Internet Phone",
"Topic :: Communications :: Telephony"
],
packages=find_packages(),
python_requires=">=3.6"
)