Skip to content

Commit

Permalink
migrate to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Jelmerro committed Jun 28, 2023
1 parent 9a2f5ff commit 7e578c7
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
__pycache__
build
carafe.egg-info
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018-2021 Jelmer van Arnhem
Copyright (c) 2018-2023 Jelmer van Arnhem

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ All of them are listed in the output as shown here:
```
usage: carafe {<carafe_name>,list} <sub_command>
Welcome to carafe 1.3.0
Welcome to carafe 1.4.0
carafe is a tiny management tool for wine bottles/carafes.
optional arguments:
Expand Down
2 changes: 1 addition & 1 deletion carafe.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# See README.md for more details and usage instructions
__license__ = "MIT"
# See LICENSE for more details and exact terms
__version__ = "1.3.0"
__version__ = "1.4.0"
# See https://github.com/jelmerro/carafe for repo and updates

import argparse
Expand Down
11 changes: 11 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[project]
name="carafe"
version="1.4.0"
authors=[{name="Jelmer van Arnhem"}]
description="carafe is a tiny management tool for wine bottles/carafes"
license={text="MIT"}
requires-python=">=3.5"
[tool.setuptools]
include-package-data=true
[project.scripts]
carafe="carafe:main"
14 changes: 0 additions & 14 deletions setup.py

This file was deleted.

0 comments on commit 7e578c7

Please sign in to comment.