Skip to content

Commit

Permalink
add pyproject.toml, remove setup.py
Browse files Browse the repository at this point in the history
first release to pypi
  • Loading branch information
hannesdelbeke committed Feb 21, 2023
1 parent 4fb8e7e commit ef91424
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 12 deletions.
38 changes: 38 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
[build-system]
requires = ["setuptools", "setuptools-scm"]
#build-backend = "setuptools.build_meta"


[tool.setuptools]
packages = ["unimenu"]


[project]
name = "unimenu"
authors = [
{name = "hannes"},
]
description = "easy menus from a single config across apps"
readme = "README.md"
requires-python = ">=3.4"
keywords = ["dcc", "pipeline", "menu", "config"]
#license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3.4",
]
dependencies = [
'importlib-metadata; python_version<"3.4"',
]
dynamic = ["version"]


[project.optional-dependencies]
yaml = ["pyyaml"]

#[project.scripts]
#my-script = "my_package.module:function"


[project.urls]
Homepage = "https://github.com/hannesdelbeke/unimenu"
Documentation = "https://github.com/hannesdelbeke/unimenu/wiki"
12 changes: 0 additions & 12 deletions setup.py

This file was deleted.

0 comments on commit ef91424

Please sign in to comment.