Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
9.2.2023: Due to updates GitLab will be unavailable for some minutes between 9:00 and 11:00.
Open sidebar
badw-it
DHParser
Commits
3fb2adbd
Commit
3fb2adbd
authored
Jun 27, 2017
by
Eckhart Arnold
Browse files
bug fixes for PyPI packaging
parent
a1e01f6a
Changes
5
Hide whitespace changes
Inline
Side-by-side
CHANGES.txt
View file @
3fb2adbd
DHParser Version 0.7.1 (27.6.2017)
..................................
- bug fixes for setuptools packaging
DHParser Version 0.7.1 (27.6.2017)
..................................
- first PyPI release
- added type annotations for static type checking with mypy
- many changes, some incompatible with prior versions
DHParser Version 0.6.0 (23.4.2017)
..................................
...
...
DHParser/versionnumber.py
View file @
3fb2adbd
...
...
@@ -18,4 +18,4 @@ permissions and limitations under the License.
import
os
__version__
=
'0.7.
1'
+
'_dev'
+
str
(
os
.
stat
(
__file__
).
st_mtime
)
__version__
=
'0.7.
2'
#
+ '_dev' + str(os.stat(__file__).st_mtime)
MANIFEST.in
View file @
3fb2adbd
...
...
@@ -7,4 +7,13 @@ include *.sh
include *.cfg
include test/run.py
include examples/EBNF/EBNF.ebnf
include examples/Tutorial/Lyrik.ebnf
include examples/Tutorial/recompile_grammar.py
include examples/Tutorial/Lyrisches_Intermezzo_IV.xml
include examples/Tutorial/Lyrisches_Intermezzo_IV.txt
recursive-exclude examples/LaTeX *
recursive-exclude examples/CommonMark *
recursive-exclude examples/MLW *
recursive-exclude examples/Arithmetic *
recursive-exclude experimental *
recursive-exclude OLDSTUFF *
README.md
View file @
3fb2adbd
DHParser
========
...
...
setup.py
View file @
3fb2adbd
from
distutils.core
import
setup
#from distutils.core import setup
from
setuptools
import
setup
from
DHParser.versionnumber
import
__version__
with
open
(
'README.md'
,
encoding
=
'utf-8'
)
as
f
:
read_me
=
f
.
read
()
setup
(
name
=
'DHParser'
,
version
=
'0.7.1'
,
version
=
__version__
,
packages
=
[
'DHParser'
],
url
=
'https://gitlab.lrz.de/badw-it/DHParser'
,
license
=
'MIT License (https://opensource.org/licenses/MIT)'
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment