Skip to content

Commit e0a75a3

Browse files
committed
Merge branch 'main' of github.com:clauspruefer/python-xml-microparser
2 parents d0cb2ad + b897377 commit e0a75a3

File tree

2 files changed

+38
-1
lines changed

2 files changed

+38
-1
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,18 @@ Clone git repository and change dir.
5454
## 3.1. Build As Non-Root-User
5555

5656
Build python-package with setup-tools (as non root user). This will generate the installabe tarball
57-
into `./dist/xmlmicroparser-0.54b0.tar.gz`.
57+
into `./dist/xmlmicroparser-0.55b0.tar.gz`.
5858

5959
```bash
6060
# python3 setup.py sdist
6161
```
6262

63+
## 3.2. Install As Root-User
64+
65+
```bash
66+
# sudo pip3 install ./dist/xmlmicroparser-0.55b0.tar.gz --break-system-packages
67+
```
68+
6369
## 4. Run Tests / Pytest
6470

6571
```bash

doc/README.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Documentation (Sphinx)
2+
3+
# 1. Dependencies
4+
5+
# 1.1. Sphinx Basic HTML / RTD Theme
6+
7+
```bash
8+
# apt-get install python3-sphinx python3-sphinx-rtd-theme
9+
```
10+
11+
# 1.2. PDF / Latex
12+
13+
```bash
14+
# apt-get install texlive-full
15+
```
16+
17+
# 2. Build
18+
19+
# 2.1. HTML Documentation
20+
21+
```bash
22+
# make html
23+
# cd ./build/html/
24+
```
25+
26+
# 2.2. PDF / Latex
27+
28+
```bash
29+
# make latexpdf
30+
# cd ./build/latex/
31+
```

0 commit comments

Comments
 (0)