forked from harmslab/linkage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (46 loc) · 968 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.distutils.bdist_wheel]
universal = true
[tool.setuptools.dynamic]
version = {attr = "linkage.__version__.__version__"}
[tool.setuptools.package-data]
"*" = [
"tests/data/*"
]
[project]
name = "linkage"
dynamic = ["version"]
dependencies = [
"numpy",
"pandas",
"matplotlib",
"openpyxl",
"dataprob"
]
requires-python = ">=3.10"
authors = [
{name = "Mike Harms", email = "harms@uoregon.edu"},
]
maintainers = [
{name = "Mike Harms", email = "harms@uoregon.edu"}
]
description = ""
readme = "README.md"
license = {file = "LICENSE"}
keywords = []
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python"
]
[project.urls]
Repository = "https://github.com/harmslab/linkage.git"
"Bug Tracker" = "https://github.com/harmslab/linkage/issues"
[project.optional-dependencies]
test = [
"coverage",
"flake8",
"pytest",
"genbadge"
]