Files
tablib/.gitignore
T
Ran Benita bc8438bda4 Stop using pkg_resources
tablib imports pkg_resources in order to find its own version. Importing
pkg_resources is very slow (100ms-250ms is common).

Avoid it by letting setuptools-scm generate a file with the version
instead.
2020-08-10 15:49:51 +02:00

44 lines
427 B
Plaintext

# application builds
build/*
dist/*
MANIFEST
# python skin
*.pyc
*.pyo
# osx noise
.DS_Store
profile
# pycharm noise
.idea
.idea/*
# vi noise
*.swp
docs/_build/*
coverage.xml
nosetests.xml
junit-py25.xml
junit-py26.xml
junit-py27.xml
# tox noise
.tox
# pyenv noise
.python-version
tablib.egg-info/*
# Coverage
.coverage
htmlcov
# setuptools noise
.eggs
*.egg-info
# generated by setuptools-scm
/src/tablib/_version.py