-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
executable file
·47 lines (39 loc) · 1.09 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
# -*- coding: UTF−8 -*-
import os
from setuptools import setup
# MCC_MNC Version
VERSION = "0.2.0"
# get long description from the README.md
with open(os.path.join(os.path.dirname(__file__), "README.md")) as fd:
long_description = fd.read()
setup(
name="MCC_MNC",
version=VERSION,
packages=[
"mcc_mnc_lut",
"mcc_mnc_genlib",
],
#
# cmd-line tools to interrogate the dictionnaries
scripts=[
"chk_msisdn.py",
"chk_mnc.py",
"chk_cntr.py",
"chk_ispc.py",
"conv_pc_383.py",
],
#
# optional dependencies
extras_require={
"dataset_update" : ["urllib", "csv", "lxml"],
},
#
author="Benoit Michau",
author_email="[email protected]",
description="A set of lookup tables for identifiers related to mobile operators and accompanying command-line tools",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/P1sec/MCC_MNC/",
keywords="MCC MNC MSISDN ISPC country code",
license="AGPLv3",
)