-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* drop py36 in gitlab-ci and upgrade gitlab-ci * update setup.py, add MANIFEST.in, add pyproject.toml
- Loading branch information
Showing
4 changed files
with
62 additions
and
13 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,9 @@ | ||
graft gdc_ng_models | ||
include alembic.ini LICENSE | ||
|
||
exclude .pre-commit-config.yaml .gitlab-ci.yml .gitignore .secrets.baseline | ||
|
||
prune tests | ||
prune */__pycache__ | ||
|
||
global-exclude *.pyc |
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,30 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools>=42", | ||
"wheel", | ||
"setuptools_scm[toml]>=3.4" | ||
] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] | ||
local_scheme = "no-local-version" | ||
|
||
[tool.black] | ||
line-length = 88 | ||
target-version = [ | ||
'py37', | ||
] | ||
include = '\.pyi?$' | ||
|
||
[tool.coverage.run] | ||
branch = true | ||
context = "tests" | ||
source = ["gdc-ng-models"] | ||
|
||
[tool.coverage.html] | ||
title = "gdc-ng-models coverage report" | ||
directory = "htmlcov" | ||
show_contexts = true | ||
|
||
[tool.isort] | ||
profile = "black" |
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