-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 695 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 695 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "oo-programming-exercises"
version = "2022.0"
authors = [
{ name="David A. Ham", email="David.Ham@imperial.ac.uk" },
]
description= """
Code for Object oriented programming in Python for mathematicians."""
dependencies = ["numpy", "ipython"]
license-file = "LICENSE.md"
license = "CC-BY-4.0"
[project.urls]
"Homepage" = "https://object-oriented-python.github.io/"
[project.optional-dependencies]
all = [
"flake8",
"pep8-naming",
"flake8-docstrings",
"pytest",
"pandas",
"ipdb",
"debugpy",
]
[tool.hatch.build.targets.wheel]
packages = ["fibonacci", "example_code"]