-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
46 lines (41 loc) · 1.09 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "harmonypy"
dynamic = ["version"]
description = "A data integration algorithm."
readme = "README.md"
license = ""
requires-python = ">=3.6"
authors = [
{ name = "Kamil Slowikowski", orcid = "0000-0002-2843-6370", email = "[email protected]" },
{ name = "John Arevalo", orcid = "0000-0002-1138-5036", email = "[email protected]" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"numpy",
"pandas",
"scikit-learn",
"scipy",
]
[project.urls]
Homepage = "https://github.com/slowkow/harmonypy"
[tool.hatch.version]
path = "harmonypy/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/harmonypy",
]
[tool.hatch.envs.test]
dependencies = [
"pytest"
]