Skip to content

Commit b5c724a

Browse files
committed
Merge branch 'develop'
2 parents 8c810eb + 964d89f commit b5c724a

File tree

4 files changed

+51
-55
lines changed

4 files changed

+51
-55
lines changed

.github/workflows/python-app.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26-
pip install tox
26+
pip install --upgrade setuptools setuptools_scm wheel build tox
2727
- name: Lint and test
2828
run: |
2929
tox
30+
- name: Build
31+
run: |
32+
python -m build -nwsx .

.github/workflows/python-publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
pip install setuptools wheel twine
24+
pip install --upgrade setuptools setuptools_scm wheel build twine
2525
- name: Build and publish
2626
env:
2727
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
2828
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
2929
run: |
30-
python setup.py sdist bdist_wheel
30+
python -m build -nwsx .
3131
twine upload dist/*

pyproject.toml

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
[build-system]
2+
requires = ["setuptools>=61.2", "setuptools_scm[toml]>=3.4.3"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "markdownify"
7+
version = "0.13.1"
8+
authors = [{name = "Matthew Tretter", email = "[email protected]"}]
9+
description = "Convert HTML to markdown."
10+
readme = "README.rst"
11+
classifiers = [
12+
"Environment :: Web Environment",
13+
"Framework :: Django",
14+
"Intended Audience :: Developers",
15+
"License :: OSI Approved :: MIT License",
16+
"Operating System :: OS Independent",
17+
"Programming Language :: Python :: 2.5",
18+
"Programming Language :: Python :: 2.6",
19+
"Programming Language :: Python :: 2.7",
20+
"Programming Language :: Python :: 3.6",
21+
"Programming Language :: Python :: 3.7",
22+
"Programming Language :: Python :: 3.8",
23+
"Topic :: Utilities",
24+
]
25+
dependencies = [
26+
"beautifulsoup4>=4.9,<5",
27+
"six>=1.15,<2"
28+
]
29+
30+
[project.urls]
31+
Homepage = "http://github.com/matthewwithanm/python-markdownify"
32+
Download = "http://github.com/matthewwithanm/python-markdownify/tarball/master"
33+
34+
[project.scripts]
35+
markdownify = "markdownify.main:main"
36+
37+
[tool.setuptools]
38+
zip-safe = false
39+
include-package-data = true
40+
41+
[tool.setuptools.packages.find]
42+
include = ["markdownify", "markdownify.*"]
43+
namespaces = false
44+
45+
[tool.setuptools_scm]

setup.py

-52
This file was deleted.

0 commit comments

Comments
 (0)