Skip to content

Commit

Permalink
project: setup 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
u8slvn committed Oct 31, 2021
1 parent dd569ca commit 7ccf999
Show file tree
Hide file tree
Showing 7 changed files with 165 additions and 111 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 0.1.0 (--)
## 0.1.0 (2021-10-31)

* Blockquote block can handle universal newlines.
* Multiple rows at a time can be added in table.
Expand Down
4 changes: 0 additions & 4 deletions MANIFEST.in

This file was deleted.

2 changes: 1 addition & 1 deletion markdownio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from markdownio.markdownio import MarkdownIO
from markdownio import block, span

__version__ = "0.0.2"
__version__ = "0.1.0"
__all__ = ["MarkdownIO", "block", "span"]
175 changes: 130 additions & 45 deletions poetry.lock

Large diffs are not rendered by default.

34 changes: 32 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,42 @@
[tool.poetry]
name = "markdownio"
version = "0.0.2"

version = "0.1.0"
description = "Python tool to write Markdown as code easily."
authors = ["u8slvn <[email protected]>"]

license = "MIT"
readme = "README.md"
repository = "https://github.com/u8slvn/markdownio"
homepage = "https://github.com/u8slvn/markdownio"

classifiers = [
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules',
'Natural Language :: English',
'Programming Language :: Python',
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
keywords=[
"markdown",
"domain-specific-language",
"markup-language",
]

include = [
"LICENSE",
"CHANGELOG.md",
"README.md",
"documentation/*",
]

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.7"

[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
Expand Down
57 changes: 0 additions & 57 deletions setup.py

This file was deleted.

0 comments on commit 7ccf999

Please sign in to comment.