mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 06:56:13 +00:00
bc8438bda4
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.
44 lines
427 B
Plaintext
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
|