You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Some string values in YAML files are not quoted and some others are. This issue may be solved by changing the way python strings are stored in python dictionaries (which are then dumped by `ruamel.yaml`). Current `tools-python` issues complicate a little bit this change. See [#91](https://github.com/spdx/tools-python/issues/91).
59
76
60
77
# Installation
61
78
62
79
Clone or download the repository and run `python setup.py install`. (In a virtualenv, of course)
63
80
81
+
or install from Pypi with `pip install spdx-tools`
82
+
83
+
84
+
# How to run tests
85
+
86
+
From the project root directory run: `python setup.py test`.
87
+
You can use another test runner such as pytest or nose at your preference.
88
+
64
89
65
90
# Development process
66
91
@@ -93,8 +118,10 @@ If there is no issue for the changes that you want to make, create first an issu
93
118
# Dependencies
94
119
95
120
* PLY : https://pypi.python.org/pypi/ply/ used for parsing.
96
-
* rdflib : https://pypi.python.org/pypi/rdflib/ for for handling RDF.
97
-
* ruamel.yaml : https://pypi.org/project/ruamel.yaml/ for handling YAML. **^[new]^**
121
+
* rdflib : https://pypi.python.org/pypi/rdflib/ for handling RDF.
122
+
* PyYAML: https://pypi.org/project/PyYAML/ for handling YAML.
123
+
* xmltodict: https://pypi.org/project/xmltodict/ for handling XML.
0 commit comments