-
Notifications
You must be signed in to change notification settings - Fork 2
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 #36 from aliceinwire/pypi_updates
pyproject: update kci-dev sources path for pypi entry point
- Loading branch information
Showing
11 changed files
with
10 additions
and
7 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,17 +1,17 @@ | ||
[tool.poetry] | ||
name = "kci-dev" | ||
version = "0.0.1" | ||
version = "0.1.0" | ||
description = "Stand alone tool for Linux Kernel developers and maintainers that can test local Linux Kernel changes on a enabled KernelCI server" | ||
authors = ["Arisu Tachibana <[email protected]>"] | ||
license = "LGPL-2.1-or-later" | ||
readme = "README.md" | ||
packages = [ | ||
{include = "kci-dev"}, | ||
{include = "subcommands", from="kci-dev"}, | ||
{include = "src"}, | ||
{include = "subcommands", from="src"}, | ||
] | ||
repository = "https://github.com/kernelci/kci-dev" | ||
classifiers = [ | ||
'Development Status :: 1 - Planning', | ||
'Development Status :: 4 - beta', | ||
'Environment :: Console', | ||
'Intended Audience :: Developers', | ||
'Operating System :: OS Independent', | ||
|
@@ -34,7 +34,7 @@ toml = "^0.10.2" | |
gitpython = "^3.1.43" | ||
|
||
[tool.poetry.scripts] | ||
kci-dev = 'kci-dev.kci-dev:run' | ||
kci-dev = 'src.kcidev:run' | ||
|
||
[tool.poetry.urls] | ||
"Issue Tracker" = "https://github.com/kernelci/kci-dev/issues" | ||
|
@@ -50,7 +50,7 @@ check = "./scripts/check.sh" | |
|
||
[tool.pytest.ini_options] | ||
pythonpath = [ | ||
"kci-dev" | ||
"src" | ||
] | ||
|
||
[build-system] | ||
|
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
|
@@ -11,6 +11,7 @@ | |
import click | ||
import requests | ||
from git import Repo | ||
|
||
from libs.common import * | ||
|
||
|
||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
import click | ||
import requests | ||
from git import Repo | ||
|
||
from libs.common import * | ||
|
||
|
||
|