Added package configurations and Woodpecker CI pipeline
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
This commit is contained in:
parent
7ce680b112
commit
1e508eeace
18
.woodpecker.yml
Normal file
18
.woodpecker.yml
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# .woodpecker.yml
|
||||||
|
pipeline:
|
||||||
|
install:
|
||||||
|
image: python
|
||||||
|
commands:
|
||||||
|
- pip install build
|
||||||
|
- pip install pytest
|
||||||
|
- pip install setuptools
|
||||||
|
- pip install twine
|
||||||
|
build:
|
||||||
|
image: python
|
||||||
|
commands:
|
||||||
|
- python -m build
|
||||||
|
publish:
|
||||||
|
image: python
|
||||||
|
commands:
|
||||||
|
- pip -m twine upload --repository-url https://git.reslate.systems -u ${CI_NETRC_USERNAME} -p ${CI_NETRC_PASSWORD} --non-interactive --disable-progress-bar --verbose dist/*
|
||||||
|
|
3
pyproject.toml
Normal file
3
pyproject.toml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[build-system]
|
||||||
|
build-backend = "setuptools.build_meta"
|
||||||
|
requires = ["setuptools", "wheel"]
|
10
setup.cfg
Normal file
10
setup.cfg
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
[metadata]
|
||||||
|
name = renamebycsv
|
||||||
|
version = 0.0.1
|
||||||
|
|
||||||
|
[options]
|
||||||
|
packages = renamebycsv
|
||||||
|
|
||||||
|
[options.entry_points]
|
||||||
|
console_scripts =
|
||||||
|
renamebycsv = renamebycsv.renamebycsv:main
|
Loading…
x
Reference in New Issue
Block a user