Skip to content
This repository has been archived by the owner on Mar 8, 2024. It is now read-only.

Commit

Permalink
add GMR1 subdirs to the install script
Browse files Browse the repository at this point in the history
  • Loading branch information
p1-bmu committed Nov 21, 2023
1 parent b423019 commit c0677c1
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools import setup, find_packages

# Pycrate Version
VERSION = "0.6.1"
VERSION = "0.7.0"


# get long description from the README.md
Expand Down Expand Up @@ -33,6 +33,8 @@
"pycrate_sys",
"pycrate_crypto",
"pycrate_osmo",
"pycrate_gmr1",
"pycrate_gmr1_csn1",
],

test_suite="test.test_pycrate",
Expand All @@ -59,19 +61,23 @@
"SEDebugMux": ["crcmod"],
},

# for pycrate_asn1dir and pycrate_csn1dir:
# for pycrate_asn1dir, pycrate_csn1dir, pycrate_gmr1_csn1:
# .asn, .csn, .txt and .json files from asn1dir and csn1dir are not required to be installed
# 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
#
package_data={
#"pycrate_asn1dir" : ["*.asn", "*.json"],
#"pycrate_csn1dir" : ["*.csn"],
#"pycrate_diameter" : ["*.xml"],
"pycrate_corenet" : ["AuC.db"],
#"pycrate_asn1dir" : ["*.asn", "*.json"],
#"pycrate_csn1dir" : ["*.csn"],
#"pycrate_gmr1_csn1" : ["*.csn"],
#"pycrate_diameter" : ["*.xml"],
"pycrate_corenet" : ["AuC.db"],
},
#include_package_data=False,

Expand Down

0 comments on commit c0677c1

Please sign in to comment.