-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from jhermann/move-to-package-32
Make configobj a package, moving towards incorporating validate
- Loading branch information
Showing
10 changed files
with
1,766 additions
and
1,666 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
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 @@ | ||
# | ||
# Additional files for source distribution | ||
# | ||
include README.md LICENSE *.txt *.ini | ||
recursive-include tests *.py *.spec *.ini | ||
recursive-include docs Makefile *.bat *.conf *.css *.html *.py *.rst *.tmp |
This file was deleted.
Oops, something went wrong.
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,28 @@ | ||
# | ||
# Configuration for setuptools | ||
# | ||
|
||
[egg_info] | ||
tag_build = .dev0 | ||
tag_date = false | ||
|
||
|
||
[sdist] | ||
formats = zip | ||
|
||
|
||
[bdist_wheel] | ||
# If you set this to 1, make sure you have a proper Travis CI build matrix, | ||
# and that your Trove classifiers state you support Python 2 and 3 | ||
universal = 1 | ||
|
||
|
||
[pytest] | ||
norecursedirs = .* *.egg *.egg-info bin dist include lib local share static docs | ||
python_files = tests/test_*.py | ||
#addopts = | ||
|
||
|
||
[flake8] | ||
#ignore = E226,… | ||
max-line-length = 132 |
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
Oops, something went wrong.