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 = "GPL-3.0-or-later"
requires-python = ">=3.6"
authors = [
{ name = "Kamil Slowikowski", email = "kslowikowski@gmail.com" },
{ name = "John Arevalo" }
]
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"
]
|