forked from heimiricmr/bromelia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
69 lines (65 loc) · 2 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import os
import pathlib
import setuptools
from bromelia.__version__ import (
__title__,
__version__,
__license__,
__author__,
__author_email__,
__description__,
__url__
)
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
with open(os.path.join(HERE, "README.md"), encoding="utf-8", mode="r") as fh:
long_description = fh.read()
# This call to setup() does all the work
setuptools.setup(
name=__title__,
version=__version__,
license=__license__,
author=__author__,
author_email=__author_email__,
description=__description__,
long_description=long_description,
long_description_content_type="text/markdown",
url=__url__,
download_url=f"https://github.com/heimiricmr/bromelia/releases/tag/v{__version__}",
packages=setuptools.find_packages(),
include_package_data=True,
keywords=[
"DIAMETER",
"3GPP",
"EPC",
"4G",
"IMS",
"TELECOM",
"TELCO",
"RFC6733",
"RFC3588",
"IETF",
"VoLTE",
"VoWiFi"
],
install_requires=[
"pyyaml"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications :: Telephony"
],
python_requires=">=3.7"
)