-
-
Notifications
You must be signed in to change notification settings - Fork 596
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add project release config and cleanup project setup. (#398)
* Add project release config and use Travis build stages. Refs #378. * Restructure project to use src/ and tests/ directories. * Fix testing. * Remove eggs. * More fixes. - isort and flake8 config - manifest template update - tox ini extension - docs build fixes - docs content fixes * Docs and license cleanup.
- Loading branch information
Showing
64 changed files
with
135 additions
and
1,307 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,3 +34,7 @@ tablib.egg-info/* | |
# Coverage | ||
.coverage | ||
htmlcov | ||
|
||
# setuptools noise | ||
.eggs | ||
*.egg-info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[settings] | ||
multi_line_output=3 | ||
include_trailing_comma=True | ||
force_grid_wrap=0 | ||
use_parentheses=True | ||
line_length=88 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,22 @@ | ||
language: python | ||
python: | ||
- 2.7 | ||
- 3.6 | ||
- 3.7 | ||
- 3.8-dev | ||
cache: pip | ||
|
||
matrix: | ||
include: | ||
- python: 2.7 | ||
- python: 3.5 | ||
- python: 3.6 | ||
- python: 3.7 | ||
- python: 3.8-dev | ||
|
||
install: | ||
- pip install -r requirements.txt | ||
- pip install -U pytest pytest-cov | ||
|
||
script: pytest --cov tablib | ||
|
||
after_success: | ||
- pip install -U codecov | ||
- codecov | ||
dist: xenial | ||
install: travis_retry pip install tox-travis | ||
script: tox | ||
after_success: bash <(curl -s https://codecov.io/bash) | ||
deploy: | ||
provider: pypi | ||
user: jazzband | ||
server: https://jazzband.co/projects/tablib/upload | ||
distributions: sdist bdist_wheel | ||
password: | ||
secure: svV4fYtodwW+iTyFOm5ISEfhVwcA+6vTskD3x6peznc40TdMV9Ek8nT3Q/NB4lCbXoUw2qR4H6uhLCjesnv/VvVk/qbitCyD8ySlgwOV5n7NzJs8lC8EYaHSjGQjatTwJAokfGVYkPawkI7HXDqtDggLUQBK+Ag8HDW+XBSbQIU= | ||
on: | ||
tags: true | ||
repo: jazzband/tablib | ||
python: 3.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
include HISTORY.md README.md LICENSE AUTHORS test_tablib.py | ||
recursive-include docs * | ||
recursive-include tests * | ||
include pytest.ini tox.ini .isort.cfg .coveragerc HISTORY.md README.md LICENSE AUTHORS | ||
prune docs/_build | ||
prune *.pyc | ||
prune __pycache__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,37 +2,6 @@ <h3><a href="https://tablib.readthedocs.io">About Tablib</a></h3> | |
<p> | ||
Tablib is an MIT Licensed format-agnostic tabular dataset library, written in Python. It allows you to import, export, and manipulate tabular data sets. Advanced features include, segregation, dynamic columns, tags & filtering, and seamless format import & export. | ||
</p> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" /> | ||
<style> | ||
.algolia-autocomplete{ | ||
width: 100%; | ||
height: 1.5em; | ||
margin: 1em auto; | ||
} | ||
.algolia-autocomplete a{ | ||
border-bottom: none !important; | ||
} | ||
#doc_search{ | ||
width: 100%; | ||
height: 100%; | ||
} | ||
</style> | ||
<input id="doc_search" placeholder="Search the doc" autofocus/> | ||
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js" onload="docsearch({ | ||
apiKey: 'fdf64af44731dc9838761b703228e4fd', | ||
indexName: 'python-tablib', | ||
inputSelector: '#doc_search', | ||
debug: false // Set debug to true if you want to inspect the dropdown | ||
})" async></script> | ||
|
||
<h3>Feedback</h3> | ||
<p> | ||
Feedback is greatly appreciated. If you have any questions, comments, | ||
random praise, or anonymous threats, <a href="mailto:[email protected]"> | ||
shoot me an email</a>. | ||
</p> | ||
|
||
|
||
<h3>Useful Links</h3> | ||
<ul> | ||
<li><a href="https://tablib.readthedocs.io">The Tablib Website</a></li> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.