-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
51 lines (42 loc) · 1.45 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
# Package ######################################################################
[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "chromax"
description = "Breeding simulator based on JAX"
readme = "README.md"
requires-python = ">= 3.9"
authors = [{ name = "Omar G. Younis", email = "[email protected]" }]
license = { text = "BSD-3-Clause" }
keywords = ["Breeding", "simulator", "JAX", "chromosome", "genetics", "bioinformatics",]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
'Intended Audience :: Science/Research',
]
dependencies = ["numpy", "pandas", "jax>=0.4.16", "jaxlib>=0.4.16", "jaxtyping"]
dynamic = ["version"]
[project.optional-dependencies]
testing = ["pytest"]
docs = ["sphinx-rtd-theme"]
[project.urls]
Repository = "https://github.com/kora-labs/chromax"
Documentation = "https://chromax.readthedocs.io/"
"Bug Report" = "https://github.com/kora-labs/chromax/issues"
[tool.setuptools]
include-package-data = true
# Linters and Test tools #######################################################
[tool.black]
safe = true
[tool.isort]
atomic = true
profile = "black"
src_paths = ["chromax", "tests"]
extra_standard_library = ["typing_extensions"]
indent = 4
lines_after_imports = 2
multi_line_output = 3