-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat. Adds support for PyPi. Closes #8.
- Loading branch information
1 parent
79bba2d
commit 8fb6519
Showing
6 changed files
with
67 additions
and
14 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
include requirements.txt | ||
include Dockerfile | ||
recursive-include examples/ *.yml *.yaml |
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,3 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" |
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,42 @@ | ||
[metadata] | ||
version = 0.3.0 | ||
name = yamlfixer-opt-nc | ||
description = automates the fixing of problems reported by yamllint | ||
long_description = file: README.md | ||
author = "OPT-NC" | ||
author_email = "[email protected]" | ||
license = "GPLv3+" | ||
license_file = LICENSE | ||
long_description_content_type = text/markdown | ||
url = https://github.com/opt-nc/yamlfixer | ||
project_urls = | ||
Bug Tracker = https://github.com/opt-nc/yamlfixer/issues | ||
Releases = https://github.com/opt-nc/yamlfixer/releases | ||
classifiers = | ||
Programming Language :: Python :: 3 | ||
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+) | ||
Operating System :: OS Independent | ||
Environment :: Console | ||
Topic :: Utilities | ||
Topic :: Text Processing | ||
Development Status :: 5 - Production/Stable | ||
Intended Audience :: System Administrators | ||
Intended Audience :: Developers | ||
Natural Language :: English | ||
|
||
|
||
[options] | ||
packages = find: | ||
python_requires = >=3.6 | ||
include_package_data = True | ||
install_requires = | ||
yamllint >= 1.26.3 | ||
setuptools | ||
|
||
[options.package_data] | ||
yamlfixer = examples/*.yaml examples/*.yml | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
yamlfixer = yamlfixer:run | ||
|
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 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
from . import run | ||
|
||
if __name__ == '__main__': | ||
sys.exit(run()) |