Skip to content

Commit 7ba0f0c

Browse files
committed
[#devel] version 0.0.49 with more complete pyproject.toml
1 parent 6d2b079 commit 7ba0f0c

File tree

2 files changed

+37
-3
lines changed

2 files changed

+37
-3
lines changed

datastock/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Do not edit, pipeline versioning governed by git tags!
2-
__version__ = '0.0.48'
2+
__version__ = '0.0.49'

pyproject.toml

Lines changed: 36 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,36 @@
11
[project]
22
name = "datastock"
3-
version = "0.0.47"
3+
license = 'MIT'
4+
dynamic = ["version"]
45
description = "Generic handler for multiple heterogenous numpy arrays and subclasses"
56
readme = "README.md"
67
requires-python = ">=3.6"
8+
authors = [
9+
{name = "Didier VEZINET", email = "[email protected]"},
10+
]
11+
maintainers = [
12+
{name = "Didier VEZINET", email = "[email protected]"},
13+
]
14+
keywords = ["data", "analysis", "interactive", "heterogeneous arrays", "numpy", "Collection"]
15+
classifiers = [
16+
# How mature is this project? Common values are
17+
# 3 - Alpha
18+
# 4 - Beta
19+
# 5 - Production/Stable
20+
"Development Status :: 5",
21+
22+
# Indicate who your project is intended for
23+
"Intended Audience :: Scientists",
24+
25+
# Specify the Python versions you support here.
26+
"Programming Language :: Python :: 3",
27+
"Programming Language :: Python :: 3.6",
28+
"Programming Language :: Python :: 3.7",
29+
"Programming Language :: Python :: 3.8",
30+
"Programming Language :: Python :: 3.9",
31+
"Programming Language :: Python :: 3.10",
32+
"Programming Language :: Python :: 3.11",
33+
]
734
dependencies = [
835
"numpy",
936
"scipy",
@@ -25,6 +52,13 @@ dev = [
2552
"pytest",
2653
]
2754

55+
[project.optional-dependencies]
56+
linting = [
57+
'ruff'
58+
]
59+
formatting = [
60+
'ruff'
61+
]
2862

29-
[project.scripts]
63+
[project.entry-points."datastock"]
3064
datastock = "scripts.main:main"

0 commit comments

Comments
 (0)