Skip to content

Commit eec99e4

Browse files
committed
fix packaging metadata + deduplicate requirements.txt (move to pyproject.toml) + bump v0.3.3
Signed-off-by: Stephen L. <LRQ3000@gmail.com>
1 parent bea5792 commit eec99e4

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

pyproject.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ build-backend = "setuptools.build_meta"
77

88
[project] # beware if using setuptools: setup.py still gets executed, and even if pyproject.toml fields take precedence, if there is any code error in setup.py, building will fail!
99
name = "webactogram" # renamed from online-actogram according to PEP 423 https://peps.python.org/pep-0423/#pick-meaningful-names
10-
version = "0.3.2" # see PEP 440 https://peps.python.org/pep-0440/#pre-releases and https://packaging.python.org/en/latest/guides/single-sourcing-package-version/
10+
version = "0.3.3" # see PEP 440 https://peps.python.org/pep-0440/#pre-releases and https://packaging.python.org/en/latest/guides/single-sourcing-package-version/
1111
description = "Actogram from browsers history, may help to screen sleep-wake patterns & disorders!"
1212
authors = [
13+
{name = "Barrett F. Davis", email = "barrettfdavis@gmail.com"},
1314
{name = "Stephen Karl Larroque", email = "LRQ3000@gmail.com"},
1415
]
1516
maintainers = [
@@ -44,10 +45,10 @@ classifiers = [
4445
'Topic :: Scientific/Engineering :: Medical Science Apps.',
4546
]
4647
dependencies = [
47-
"matplotlib",
48-
"numpy",
49-
"pandas",
50-
"scipy",
48+
"matplotlib>=3.3.4",
49+
"numpy>=1.21.0",
50+
"pandas>=1.3.4",
51+
"scipy>=1.6.1",
5152
]
5253

5354
[project.urls]

requirements.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
11
# Always keep this file even if empty, it’s necessary to avoid GitHub Actions setup-python choking...
2-
matplotlib>=3.3.4
3-
numpy>=1.21.0
4-
pandas>=1.3.4
5-
scipy>=1.6.1

0 commit comments

Comments
 (0)