forked from cantaro86/Financial-Models-Numerical-Methods
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
22 lines (18 loc) · 669 Bytes
/
pyproject.toml
File metadata and controls
22 lines (18 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[build-system]
requires = ["setuptools", "setuptools-scm", "numpy", "cython"]
build-backend = "setuptools.build_meta"
[project]
name = "FMNM"
version = "1.0.0"
authors = [{ name = "cantaro86", email = "nicolacantarutti@gmail.com" }]
description = "Library for the code used in the FMNM notebooks."
readme = "README.md"
requires-python = ">=3.8"
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["list_of_packages.txt"]}
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false # prevent folders without __init__.py from being scanned
[project.urls]
"Homepage" = "https://github.com/cantaro86/Financial-Models-Numerical-Methods"