[b9e282]: / internal / infra-bionemo / pyproject.toml

Download this file

37 lines (32 with data), 1.1 kB

 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", "wheel"]
build-backend = "setuptools.build_meta"
# For guidance, see: https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
[project]
name = "infra-bionemo"
version = "0.1.0"
authors = [{ name = "BioNeMo Team", email = "bionemofeedback@nvidia.com" }]
description = "Internal library of utilities and programs for BioNeMo-related infrastructure."
readme = "README.md"
requires-python = ">=3.10"
keywords = []
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3.10",
"Private :: Do Not Upload",
]
dependencies = [
"click>=8.1.7,<9.0.0",
"tomli>=2.0.2",
"tomli_w>=1.1.0",
]
[project.scripts]
license-check = "infra_bionemo.license_check:entrypoint"
create-bionemo-project = "infra_bionemo.new_project.exe.bionemo_subpackage:entrypoint"
create-py-project = "infra_bionemo.new_project.exe.simple:entrypoint"
create-namespaced-project = "infra_bionemo.new_project.exe.namespace:entrypoint"
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [ "ignore::DeprecationWarning",]
[tool.coverage.run]
source = ["infra_bionemo"]