forked from AlphaGenes/AlphaImpute2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (31 loc) · 959 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "AlphaImpute2"
version = "0.0.3"
authors = [
{ name="Andrew Whalen", email="[email protected]" },
]
description = "An imputation software for massive livestock populations."
# readme corresponds to the long_description
# "*.md" specifies the long_description_content_type
readme = "README.md"
license = {file = "MIT_License.txt"}
classifiers = [
"Programming Language :: Python :: 3",
]
# correspond to install_requires
dependencies = [
"numpy>=1.19",
"numba>=0.49.0"
]
[project.scripts]
# correspond to entry_points
AlphaImpute2 = "alphaimpute2.alphaimpute2:main"
[project.urls]
"Homepage" = "https://github.com/AlphaGenes/AlphaImpute2"
"Bug Tracker" = "https://github.com/AlphaGenes/AlphaImpute2/issues"
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["alphaimpute2", "alphaimpute2.tinyhouse", "alphaimpute2.Imputation"]