-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
107 lines (92 loc) · 3.59 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import re
import os
import sys
import json
from urllib import request
from pkg_resources import parse_version
###########################################################################
END_OF_INTRODUCTION = '## Installation'
EPILOGUE = '''
Full information and usage details at the [text_console GitHub repository](https://github.com/Ircama/text_console).
'''
DESCRIPTION = (
"A customizable Tkinter-based text console widget,"
" in which a user types in commands"
" to be sent to the Python interpreter."
),
PACKAGE_NAME = "text_console"
VERSIONFILE = "text_console/__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:
try:
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']
except Exception as e:
print("Cannot use pypi or testpypi for getting the version:", e)
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=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
"Topic :: Software Development :: Libraries :: Python Modules",
'Programming Language :: Python :: 3 :: Only',
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
],
keywords=("shell console tkinter"),
author="Ircama",
url="https://github.com/Ircama/text_console",
license='EUPL-1.2',
packages=find_packages(),
entry_points={
'console_scripts': [
'text_console = text_console.__main__:main',
]},
python_requires='>3.6'
)