-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
36 lines (32 loc) · 943 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "AlphaPeel"
version = "1.1.3"
authors = [
{ name="Andrew Whalen", email="[email protected]" },
]
description = "Multilocus and hybrid peeling"
# 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",
'License :: OSI Approved :: MIT License',
]
# correspond to install_requires
dependencies = [
"numpy>=1.19",
"numba>=0.50.0"
]
[project.scripts]
# correspond to entry_points
AlphaPeel = "tinypeel.tinypeel:main"
[project.urls]
"Homepage" = "https://github.com/AlphaGenes/AlphaPeel"
"Bug Tracker" = "https://github.com/AlphaGenes/AlphaPeel/issues"
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["tinypeel", "tinypeel.tinyhouse", "tinypeel.Peeling"]