mirror of
https://github.com/towalink/wgfrontend.git
synced 2025-04-19 08:55:11 +00:00
Fix wgfrontend-password module import
This commit is contained in:
parent
1f07cb927a
commit
56d443d93c
20
CHANGELOG.md
20
CHANGELOG.md
@ -10,7 +10,27 @@ All notable changes to this project are documented in this file.
|
|||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
- Log successful and failed login attempts
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- n/a
|
||||||
|
|
||||||
|
## [1.0.1] - 2024-05-04
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Allow non-ssl login in case SSL/TLS is not used
|
||||||
|
- Fix wgfrontend-password module import
|
||||||
|
|
||||||
|
## [1.0.0] - 2024-05-04
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- No longer show footer in case scrollbar is needed
|
||||||
|
- Avoid setuptools warning on packetization
|
||||||
- Add session security headers
|
- Add session security headers
|
||||||
|
- Consider production ready after multiple years of use
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
9
setup.py
9
setup.py
@ -7,14 +7,14 @@ with open('README.md', 'r') as f:
|
|||||||
|
|
||||||
setup_kwargs = {
|
setup_kwargs = {
|
||||||
'name': 'wgfrontend',
|
'name': 'wgfrontend',
|
||||||
'version': '0.9.2',
|
'version': '1.0.1',
|
||||||
'author': 'The Towalink Project',
|
'author': 'The Towalink Project',
|
||||||
'author_email': 'pypi.wgfrontend@towalink.net',
|
'author_email': 'pypi.wgfrontend@towalink.net',
|
||||||
'description': 'web-based user interface for configuring WireGuard for roadwarriors',
|
'description': 'web-based user interface for configuring WireGuard for roadwarriors',
|
||||||
'long_description': long_description,
|
'long_description': long_description,
|
||||||
'long_description_content_type': 'text/markdown',
|
'long_description_content_type': 'text/markdown',
|
||||||
'url': 'https://www.github.com/towalink/wgfrontend',
|
'url': 'https://www.github.com/towalink/wgfrontend',
|
||||||
'packages': setuptools.find_packages('src'),
|
'packages': setuptools.find_namespace_packages('src'),
|
||||||
'package_dir': {'': 'src'},
|
'package_dir': {'': 'src'},
|
||||||
'include_package_data': True,
|
'include_package_data': True,
|
||||||
'install_requires': ['cherrypy',
|
'install_requires': ['cherrypy',
|
||||||
@ -25,15 +25,14 @@ setup_kwargs = {
|
|||||||
'entry_points': '''
|
'entry_points': '''
|
||||||
[console_scripts]
|
[console_scripts]
|
||||||
wgfrontend=wgfrontend:main
|
wgfrontend=wgfrontend:main
|
||||||
wgfrontend-password=pwdtools:hash_password_interactively
|
wgfrontend-password=wgfrontend.pwdtools:hash_password_interactively
|
||||||
''',
|
''',
|
||||||
'classifiers': [
|
'classifiers': [
|
||||||
'Programming Language :: Python',
|
'Programming Language :: Python',
|
||||||
'Programming Language :: Python :: 3',
|
'Programming Language :: Python :: 3',
|
||||||
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
|
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
|
||||||
'Operating System :: POSIX :: Linux',
|
'Operating System :: POSIX :: Linux',
|
||||||
'Development Status :: 4 - Beta',
|
'Development Status :: 5 - Production/Stable',
|
||||||
#'Development Status :: 5 - Production/Stable',
|
|
||||||
'Intended Audience :: System Administrators',
|
'Intended Audience :: System Administrators',
|
||||||
'Intended Audience :: Information Technology',
|
'Intended Audience :: Information Technology',
|
||||||
'Intended Audience :: Telecommunications Industry',
|
'Intended Audience :: Telecommunications Industry',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user