-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
116 lines (100 loc) · 3.82 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
##########################################################################
# hostp2pd - The Wi-Fi Direct Session Manager
# wpa_cli controller of Wi-Fi Direct connections handled by wpa_supplicant
# https://github.com/Ircama/hostp2pd
# (C) Ircama 2021 - CC-BY-NC-SA-4.0
##########################################################################
from setuptools import setup, find_packages
import re
import os
import json
from urllib import request
from pkg_resources import parse_version
###########################################################################
END_OF_INTRODUCTION = "# Connecting"
EPILOGUE = """
Full information and usage details at the [hostp2pd GitHub repository](https://github.com/Ircama/hostp2pd).
"""
DESCRIPTION = (
"Wi-Fi Direct Session Manager, implementing a host AP daemon "
"in Wi-Fi Direct mode, including P2P WPS enrollment"
)
PACKAGE_NAME = "hostp2pd"
VERSIONFILE = PACKAGE_NAME + "/__version__.py"
###########################################################################
def versions(pkg_name, site):
url = "https://" + site + ".python.org/pypi/" + pkg_name + "/json"
try:
releases = json.loads(request.urlopen(url).read())["releases"]
except Exception as e:
print("Error while getting data from URL '" + url + "': " + e)
return []
return sorted(releases, key=parse_version, reverse=True)
with open("README.md", "r") as readme:
long_description = readme.read()
build = ""
verstrline = open(VERSIONFILE, "rt").read()
VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
mo = re.search(VSRE, verstrline, re.M)
if mo:
verstr = mo.group(1)
else:
raise RuntimeError("Unable to find version string in %s." % (VERSIONFILE,))
if os.environ.get("GITHUB_RUN_NUMBER") is not None:
version_list_pypi = [
a for a in versions(PACKAGE_NAME, "pypi") if a.startswith(verstr)
]
version_list_testpypi = [
a for a in versions(PACKAGE_NAME, "testpypi") if a.startswith(verstr)
]
if (
version_list_pypi
or version_list_testpypi
or os.environ.get("GITHUB_FORCE_RUN_NUMBER") is not None
):
print("------------------------------------------------------------------")
print("Using build number " + os.environ["GITHUB_RUN_NUMBER"])
if version_list_pypi:
print("Version list available in pypi: " + ", ".join(version_list_pypi))
if version_list_testpypi:
print(
"Version list available in testpypi: "
+ ", ".join(version_list_testpypi)
)
print("------------------------------------------------------------------")
verstr += "-" + os.environ["GITHUB_RUN_NUMBER"]
setup(
name=PACKAGE_NAME,
version=verstr,
description=(DESCRIPTION),
long_description=long_description[: long_description.find(END_OF_INTRODUCTION)]
+ EPILOGUE,
long_description_content_type="text/markdown",
classifiers=[
"Operating System :: POSIX :: Linux",
"License :: Other/Proprietary License",
"Topic :: Communications",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"Intended Audience :: Developers",
],
keywords="wi-fi-direct p2p wpa-supplicant wpa-cli",
author="Ircama",
url="https://github.com/Ircama/hostp2pd",
license="CC-BY-NC-SA-4.0",
packages=find_packages(),
entry_points={
"console_scripts": [
"hostp2pd = hostp2pd:main",
]
},
include_package_data=True,
zip_safe=False,
install_requires=["python-daemon", "pyyaml"],
python_requires=">3.5",
)