Skip to content

Commit

Permalink
Add pyproject.toml for distribution.
Browse files Browse the repository at this point in the history
  • Loading branch information
caarmen committed Jun 2, 2024
1 parent 6c37c29 commit dd450fd
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.coverage
.vscode/
reports/
dist/
__pycache__
*.egg-info/
39 changes: 39 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "cycle-plotter"
version = "0.0.1"
dependencies = [
"defusedxml",
"matplotlib",
]
requires-python = ">=3.11"
authors = [
{name = "Carmen Alvarez", email = "carmen@rmen.ca"},
]
description = "Command line tool to plot a graph of cycles exported from Apple Health or Withings Health Mate."
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["cli", "health"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Framework :: Matplotlib",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]

[project.scripts]
cycle-plotter = "cycleplotter.main:main"

[project.urls]
Repository = "https://github.com/caarmen/cycle-plotter"
Changelog = "https://github.com/caarmen/cycle-plotter/releases"

[tool.setuptools.packages.find]
where = ["."]
include = ["cycleplotter*"]
namespaces = false

0 comments on commit dd450fd

Please sign in to comment.