File tree Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 1
1
[flake8]
2
+ select = C,E,F,W,B,B950
2
3
# Ignore specific warnings and errors according to CEP-8 style
3
4
extend-ignore =
4
5
W191, # Indentation contains tabs
5
6
W391, # Blank line at end of file
6
7
E117, # Over-indented
7
8
D208, # Docstring is over-indented
9
+ D203, # 1 blank line required before class docstring - CEP-7
10
+ D212, # Multi-line docstring summary should start at the first line - CEP-7
8
11
# Ignore long lines as specified in CEP-8
9
12
max-line-length = 100
10
13
extend-exclude =
Original file line number Diff line number Diff line change 93
93
94
94
global __version__ # skipcq: PYL-W0604
95
95
96
- __version__ = """2.0.0-beta """
96
+ __version__ = """2.0.0-rc3 """
97
97
"""The version of this program.
98
98
99
99
Minimal Acceptance Testing:
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = multicast
3
- version = 2.0.0-beta
3
+ version = 2.0.0-rc3
4
4
author = Mr. Walls
5
5
6
6
description = Python Multicast Repo for Send/Recv Stubs.
@@ -10,6 +10,7 @@ url = https://github.com/reactive-firewall/multicast
10
10
download_url = https://github.com/reactive-firewall/multicast.git
11
11
classifiers =
12
12
Intended Audience :: Developers
13
+ Operating System :: POSIX
13
14
Operating System :: MacOS :: MacOS X
14
15
Operating System :: POSIX :: Linux
15
16
License :: OSI Approved :: MIT License
@@ -26,8 +27,10 @@ license_files =
26
27
27
28
platform = any
28
29
project_urls =
29
- Bug Tracker = https://github.com/reactive-firewall/multicast/issues
30
+ " Bug Tracker" = https://github.com/reactive-firewall/multicast/issues
30
31
License = https://github.com/reactive-firewall/multicast/LICENSE.md
32
+ Documentation = https://reactive-firewallmulticast.readthedocs.io/en/stable
33
+ Repository = https://github.com/reactive-firewall/multicast.git
31
34
32
35
[bdist_rpm]
33
36
url = https://github.com/reactive-firewall/multicast.git
Original file line number Diff line number Diff line change @@ -137,9 +137,10 @@ def parse_requirements_for_install_requires(requirements_text):
137
137
"""The "Software License Agreement" of this program."""
138
138
try :
139
139
class_tags = [
140
- str ("""Development Status :: 4 - Beta """ ),
140
+ str ("""Development Status :: 5 - Production/Stable """ ),
141
141
str ("""Environment :: Console""" ),
142
142
str ("""Intended Audience :: Developers""" ),
143
+ str ("""Operating System :: POSIX""" ),
143
144
str ("""Operating System :: MacOS :: MacOS X""" ),
144
145
str ("""Operating System :: POSIX :: Linux""" ),
145
146
str ("""License :: OSI Approved :: MIT License""" ),
@@ -153,7 +154,7 @@ def parse_requirements_for_install_requires(requirements_text):
153
154
]
154
155
except Exception as e :
155
156
print (f"Warning: Error occurred while setting class_tags: { e } " )
156
- class_tags = ["Development Status :: 4 - Beta " ]
157
+ class_tags = ["Development Status :: 5 - Production/Stable " ]
157
158
# finally the setup
158
159
setup (
159
160
name = conf_dict ["""metadata""" ]["""name""" ],
You can’t perform that action at this time.
0 commit comments