Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 23 additions & 21 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,43 +1,45 @@
__pycache__/
*.py[cod]
*.out
# Build outputs
/build/
/dist*/
/tmp/
*.egg-info/
/.eggs/
src/spdx_tools/spdx/parser/tagvalue/parsetab.py
/.cache/

# Python cache
__pycache__/
*.py[cod]
*.out

# Virtual environments
.python-version
.tox
venv*

# virtualenv
/bin
/include
/Include
/lib
/Lib
/local
/local/
/.eggs/
*.egg-info/
/Include
/include
/pip-selfcheck.json
.Python
/share/

# IDEs
.idea
.project
.pydevproject
.idea
org.eclipse.core.resources.prefs
.vscode
.pytest_cache

# Installer logs
pip-log.txt
org.eclipse.core.resources.prefs

# Unit test / coverage reports
# Testing and type checking
.cache
.coverage
.coverage.*
nosetests.xml
.mypy_cache
.pytest_cache
htmlcov

# OS temporary files
*.*~
._*
.DS_Store
/tmp/
15 changes: 0 additions & 15 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,16 +1 @@
graft examples
graft src
graft tests

prune src/spdx_tools.egg-info

include .gitignore
include README.md
include CHANGELOG.md
include CONTRIBUTING.md
include DOCUMENTATION.md
include LICENSE
include setup.py
include pyproject.toml

global-exclude *.py[co] __pycache__ *.*~ .DS_Store .pytest_cache .mypy_cache
Loading