Skip to content

Commit

Permalink
Build package with flit
Browse files Browse the repository at this point in the history
  • Loading branch information
kytta committed Sep 7, 2024
1 parent 51dbd27 commit f765c46
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
13 changes: 4 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
[build-system]
build-backend = "hatchling.build"
build-backend = "flit_core.buildapi"
requires = [
"hatchling",
"flit-core<4,>=3.2",
]

[project]
name = "skyr"
description = "A low-fat task runner."
readme = "README.md"
license = "ISC"
license = { text = "ISC" }
maintainers = [
{ name = "Nikita Karamov", email = "[email protected]" },
]
Expand Down Expand Up @@ -37,6 +36,7 @@ classifiers = [
"Typing :: Typed",
]
dynamic = [
"description",
"version",
]
dependencies = [
Expand All @@ -45,11 +45,6 @@ urls.Issues = "https://github.com/kytta/skyr/issues"
urls.Source = "https://github.com/kytta/skyr"
scripts.skyr = "skyr:main"

[tool.setuptools_scm]

[tool.hatch.version]
path = "skyr.py"

[tool.autopep8]
ignore = [ "W503" ]

Expand Down
1 change: 1 addition & 0 deletions skyr.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python3
"""A low-fat task runner."""
import argparse
import errno
import os
Expand Down

0 comments on commit f765c46

Please sign in to comment.