-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
104 additions
and
50 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 |
---|---|---|
@@ -1,7 +1,13 @@ | ||
*.egg-info/ | ||
*.py[cod] | ||
*.py[rcod] | ||
.cache/ | ||
.coverage | ||
.eggs/ | ||
.tox/ | ||
.venv/ | ||
build/ | ||
coverage.* | ||
dist/ | ||
doc/build/ | ||
htmlcov/ | ||
pip-wheel-metadata/ |
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,2 @@ | ||
3.7.6 | ||
3.6.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
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,8 @@ | ||
[build-system] | ||
requires = [ | ||
'setuptools >= 41.0.0', | ||
'setuptools_scm >= 1.15.0', | ||
'setuptools_scm_git_archive >= 1.0', | ||
'wheel', | ||
] | ||
build-backend = 'setuptools.build_meta' |
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 |
---|---|---|
@@ -1,10 +1,16 @@ | ||
[aliases] | ||
dists = clean --all sdist bdist_wheel | ||
|
||
[bdist_wheel] | ||
universal = 1 | ||
|
||
[metadata] | ||
name = python-gilt | ||
summary = gilt - A GIT layering tool. | ||
description-file = README.rst | ||
author = John Dewey | ||
author-email = [email protected] | ||
home-page = https://github.com/metacloud/gilt | ||
author-email = [email protected] | ||
home-page = https://github.com/retr0h/gilt | ||
classifier = | ||
Development Status :: 4 - Beta | ||
Environment :: Console | ||
|
@@ -15,29 +21,52 @@ classifier = | |
License :: OSI Approved :: MIT License | ||
Natural Language :: English | ||
Operating System :: OS Independent | ||
Programming Language :: Python :: 2 | ||
Programming Language :: Python :: 2.7 | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Topic :: System :: Systems Administration | ||
Topic :: Utilities | ||
|
||
[pbr] | ||
skip_authors = True | ||
skip_changelog = True | ||
warnerrors = True | ||
[options] | ||
use_scm_version = True | ||
python_requires = >=3.6 | ||
packages = find: | ||
include_package_data = True | ||
zip_safe = False | ||
|
||
# These are required during `setup.py` run: | ||
setup_requires = | ||
setuptools_scm >= 1.15.0 | ||
setuptools_scm_git_archive >= 1.0 | ||
|
||
# These are required in actual runtime: | ||
install_requires = | ||
click | ||
colorama | ||
fasteners | ||
git-url-parse | ||
PyYAML | ||
sh | ||
|
||
[global] | ||
setup-hooks = | ||
pbr.hooks.setup_hook | ||
[options.extras_require] | ||
# These are required during test: | ||
test = | ||
flake8 | ||
hacking | ||
pep517 | ||
pytest | ||
pytest-cov | ||
pytest-helpers-namespace | ||
pytest-mock | ||
twine | ||
yapf==0.16.3 | ||
|
||
[entry_points] | ||
[options.entry_points] | ||
console_scripts = | ||
gilt = gilt.shell:main | ||
|
||
[files] | ||
packages = | ||
gilt | ||
[options.packages.find] | ||
where = . | ||
|
||
[build_sphinx] | ||
all_files = 1 | ||
|
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 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