OXIESEC PANEL
- Current Dir:
/
/
opt
/
gsutil
/
third_party
/
pyparsing
Server IP: 2a02:4780:11:1594:0:ef5:22d7:a
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
12/09/2024 05:26:03 PM
rwxr-xr-x
📄
.coveragerc
120 bytes
08/25/2024 02:43:42 PM
rw-r--r--
📁
.github
-
08/25/2024 02:43:42 PM
rwxr-xr-x
📄
.gitignore
2.23 KB
08/25/2024 02:43:42 PM
rw-r--r--
📄
.pre-commit-config.yaml
126 bytes
08/25/2024 02:43:42 PM
rw-r--r--
📄
BUILDING.md
784 bytes
08/25/2024 02:43:42 PM
rw-r--r--
📄
CHANGES
174.69 KB
08/25/2024 02:43:42 PM
rw-r--r--
📄
CODE_OF_CONDUCT.rst
3.26 KB
08/25/2024 02:43:42 PM
rw-r--r--
📄
CONTRIBUTING.md
6.73 KB
08/25/2024 02:43:42 PM
rw-r--r--
📄
LICENSE
1023 bytes
08/25/2024 02:43:42 PM
rw-r--r--
📄
README.rst
3.54 KB
08/25/2024 02:43:42 PM
rw-r--r--
📁
docs
-
08/25/2024 02:43:42 PM
rwxr-xr-x
📁
examples
-
08/25/2024 02:43:42 PM
rwxr-xr-x
📁
pyparsing
-
02/11/2025 08:19:48 AM
rwxr-xr-x
📄
pyproject.toml
1.73 KB
08/25/2024 02:43:42 PM
rw-r--r--
📁
tests
-
08/25/2024 02:43:42 PM
rwxr-xr-x
📄
tox.ini
446 bytes
08/25/2024 02:43:42 PM
rw-r--r--
📄
update_pyparsing_timestamp.py
492 bytes
08/25/2024 02:43:42 PM
rw-r--r--
Editing: BUILDING.md
Close
# BUILDING pyparsing uses the [flit](https://flit.readthedocs.io/) build system that is compliant with [PEP 517](https://www.python.org/dev/peps/pep-0517/). Therefore, any PEP 517-compliant tools can be used to build it. ## Building using flit To build the distribution files using flit, type: ``` $ flit build ``` The generated sdist and wheel will be placed in `dist/` directory. ## Building using build [build](https://github.com/pypa/build) is a generic builder for PEP 517 projects. To build the distribution files using build, type: ``` $ pyproject-build ``` The generated sdist and wheel will be placed in `dist/` directory. ## Testing pyparsing uses [tox](https://tox.wiki/en/latest/) to run tests. In order to run the complete test suite, type: ``` $ tox ```