Skip to content

Commit

Permalink
Use the default contents of the "README.md" file as PyPI long descrip…
Browse files Browse the repository at this point in the history
…tion contents
  • Loading branch information
p1-mmr committed Feb 6, 2024
1 parent ca577d6 commit 8d17367
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
#!/usr/bin/python3
#-*- encoding: Utf-8 -*-

from os.path import dirname, realpath
from setuptools import setup

SCRIPT_DIR = dirname(realpath(__file__))
README_PATH = SCRIPT_DIR + '/README.md'

with open(README_PATH) as fd:
long_description = fd.read()

setup(name = 'qcsuper',
version = '2.0.0',
description = ' QCSuper is a tool communicating with Qualcomm-based phones and modems, allowing to capture raw 2G/3G/4G radio frames, among other things',
author = 'P1 Security - Marin Moulinier',
author_email = '',
long_description = long_description,
long_description_content_type = 'text/markdown',
entry_points = {
'console_scripts': [
'qcsuper = qcsuper.__main__'
Expand Down

0 comments on commit 8d17367

Please sign in to comment.