Compare commits
2 Commits
516e08a707
...
0.1.0
Author | SHA1 | Date | |
---|---|---|---|
5cf265f09c | |||
91743d1c6d |
22
.drone.yml
Normal file
22
.drone.yml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: build and publish
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build
|
||||||
|
image: registry.kucharczyk.tech/python-pypi
|
||||||
|
commands:
|
||||||
|
- python -m build
|
||||||
|
- name: publish
|
||||||
|
image: registry.kucharczyk.tech/python-pypi
|
||||||
|
commands:
|
||||||
|
- python -m twine upload -u $USERNAME -p $PASSWORD dist/*
|
||||||
|
environment:
|
||||||
|
USERNAME:
|
||||||
|
from_secret: pypi_username
|
||||||
|
PASSWORD:
|
||||||
|
from_secret: pypi_password
|
||||||
|
trigger:
|
||||||
|
event:
|
||||||
|
- tag
|
@ -1,6 +1,6 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
name = frontmatter-to-csv
|
name = frontmatter-to-csv
|
||||||
version = 0.0.1
|
version = 0.1.0
|
||||||
author = Lukáš Kucharczyk
|
author = Lukáš Kucharczyk
|
||||||
author_email = lukas@kucharczyk.xyz
|
author_email = lukas@kucharczyk.xyz
|
||||||
description = Convert YAML front matter to CSV
|
description = Convert YAML front matter to CSV
|
||||||
@ -11,8 +11,11 @@ project_urls =
|
|||||||
Bug Tracker = https://git.kucharczyk.xyz/lukas/frontmatter-to-csv/issues
|
Bug Tracker = https://git.kucharczyk.xyz/lukas/frontmatter-to-csv/issues
|
||||||
classifiers =
|
classifiers =
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
License :: OSI Approved :: MIT License
|
Environment :: Console
|
||||||
|
Intended Audience :: End Users/Desktop
|
||||||
|
License :: OSI Approved :: GNU General Public License (GPL)
|
||||||
Operating System :: OS Independent
|
Operating System :: OS Independent
|
||||||
|
Topic :: Utilities
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
packages = frontmatter_to_csv
|
packages = frontmatter_to_csv
|
||||||
|
Reference in New Issue
Block a user