-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
55 lines (50 loc) · 1.18 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "pyradigm"
dynamic = ["version"]
description = "Python-based data structure to improve handling of datasets in machine learning workflows"
readme = "README.md"
license = "Apache-2.0"
authors = [
{ name = "Pradeep Reddy Raamana", email = "[email protected]" },
]
keywords = [
"data",
"dataset",
"learning",
"machine",
"provenance",
"python",
"structure",
"test",
"workflow",
]
classifiers = [
"Intended Audience :: Science/Research",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
]
dependencies = [
"numpy",
"scipy",
"setuptools",
]
[project.scripts]
pyradigm = "pyradigm.__main__:main"
[project.urls]
Homepage = "https://github.com/raamana/pyradigm"
[tool.hatch.version]
source = 'vcs'
version-file = 'pyradigm/_version.py'
[tool.hatch.build.targets.sdist]
include = [
"/pyradigm",
]