Check-in [cf99bb8fa7]
Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | add msc_pyparser option dependency `pip install modseccfg[all]` |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
cf99bb8fa735fc337c0a722048e86dbe |
User & Date: | mario 2022-10-21 22:49:19 |
Context
2022-10-21
| ||
22:50 | flex decription tag detection check-in: 12587995cd user: mario tags: trunk | |
22:49 | add msc_pyparser option dependency `pip install modseccfg[all]` check-in: cf99bb8fa7 user: mario tags: trunk | |
22:48 | fix for copied menu definition is later PSG check-in: 30c1fffa92 user: mario tags: trunk | |
Changes
Changes to setup.py.
︙ | ︙ | |||
25 26 27 28 29 30 31 32 33 | }, include_package_data=True, # data_files=[("man/man1", ["manpage/modseccfg.1"])), # automatically done in pluginconf.setup now entry_points={ "console_scripts": [ "modseccfg=modseccfg.mainwindow:main", ] } ) | > > > | 25 26 27 28 29 30 31 32 33 34 35 36 | }, include_package_data=True, # data_files=[("man/man1", ["manpage/modseccfg.1"])), # automatically done in pluginconf.setup now entry_points={ "console_scripts": [ "modseccfg=modseccfg.mainwindow:main", ] }, extras_require = { "all": ["msc_pyparser >= 1.1.1"] } ) |