pycrate/setup.py

95 lines
2.7 KiB
Python
Raw Normal View History

2018-04-11 21:49:41 +00:00
# -*- coding: UTF8 -*-
2017-07-05 21:36:10 +00:00
2021-05-07 15:47:04 +00:00
import os
import sys
2017-07-05 21:36:10 +00:00
from setuptools import setup, find_packages
# Pycrate Version
2022-03-16 17:29:28 +00:00
VERSION = "0.5.4"
# get dependencies according to the Python version
if sys.version_info[0] == 2:
# Python2 requires enum34
install_reqs = ['enum34']
else:
install_reqs = []
# get long description from the README.md
with open(os.path.join(os.path.dirname(__file__), "README.md")) as fd:
long_description = fd.read()
2021-05-07 15:47:04 +00:00
2017-07-05 21:36:10 +00:00
setup(
name="pycrate",
version=VERSION,
2017-07-05 21:36:10 +00:00
#packages=find_packages(),
packages=[
"pycrate_core",
"pycrate_ether",
"pycrate_media",
"pycrate_asn1c",
"pycrate_asn1dir",
"pycrate_asn1rt",
"pycrate_csn1",
"pycrate_csn1dir",
"pycrate_mobile",
"pycrate_diameter",
"pycrate_corenet",
"pycrate_sys",
"pycrate_crypto",
"pycrate_osmo",
],
2017-07-05 21:36:10 +00:00
test_suite="test.test_pycrate",
scripts=[
"tools/pycrate_asn1compile.py",
"tools/pycrate_berdecode.py",
"tools/pycrate_showmedia.py",
"tools/pycrate_shownas.py",
2022-03-16 17:16:19 +00:00
"tools/pycrate_gtp_type_info.py",
"tools/pycrate_map_op_info.py",
"tools/pycrate_extnas_demo.py",
],
2017-07-05 21:36:10 +00:00
# potential dependencies
install_requires=install_reqs,
2017-07-05 21:36:10 +00:00
# optional dependencies
2019-08-01 15:08:17 +00:00
extras_require={
"NASLTE" : ["CryptoMobile"],
"NAS5G" : ["CryptoMobile"],
"corenet" : ["pysctp", "CryptoMobile"],
"diameter_dict" : ["lxml"],
"SEDebugMux": ["crcmod"],
},
# for pycrate_asn1dir and pycrate_csn1dir:
# .asn, .csn, .txt and .json files from asn1dir and csn1dir are not required to be installed
2017-07-05 21:36:10 +00:00
# only compiled .py modules are installed by default
# for pycrate_diameter:
# .xml files are converted to Python dicts and may be updated from time to time
# for pycrate_corenet:
# the AuC.db file is the mobile subscriber authentication database
# containing Ki and is required at runtime when using corenet
2017-07-05 21:36:10 +00:00
package_data={
#"pycrate_asn1dir" : ["*.asn", "*.json"],
#"pycrate_csn1dir" : ["*.csn"],
#"pycrate_diameter" : ["*.xml"],
"pycrate_corenet" : ["AuC.db"],
2017-07-05 21:36:10 +00:00
},
#include_package_data=False,
author="Benoit Michau",
author_email="michau.benoit@gmail.com",
description="A software suite to handle various data formats",
2021-05-07 15:47:04 +00:00
long_description=long_description,
2021-05-06 15:45:17 +00:00
long_description_content_type="text/markdown",
url="https://github.com/P1sec/pycrate/",
2022-03-16 17:29:28 +00:00
keywords="protocol format ASN.1 CSN.1 compiler encoder decoder mobile core network Diameter NAS S1AP NGAP TCAP MAP GTP PFCP SCCP ISUP",
license="LGPL v2.1+",
2017-07-05 21:36:10 +00:00
)