-
-
Notifications
You must be signed in to change notification settings - Fork 108
/
setup.py
36 lines (33 loc) · 1.27 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
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.6.8",
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="taylerporter@gmail.com",
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(exclude=("tests",)),
package_data={"pyVoIP": ["py.typed"]},
python_requires=">=3.6",
)