-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
58 lines (51 loc) · 1.18 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "robustranking"
version = "0.2"
description = "Package for ranking algorithms"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" } # Path to your license file
# Authors and maintainers
authors = [
{ name = "Jeroen Rook", email = "[email protected]" }
]
maintainers = [
{ name = "Jeroen Rook", email = "[email protected]" }
]
# List of dependencies
dependencies = [
"matplotlib>=3.5.2",
"numpy>=1.23",
"pandas",
# "pygmo",
"scipy",
"statsmodels",
"typing_extensions"
]
# Optional dependencies, categorized
[project.optional-dependencies]
dev = [
"pytest",
"flake8",
"flake8-docstrings",
"flake8-import-order",
"pre-commit",
"pylint",
"YAPF",
"isort",
]
#
#[tool.setuptools.packages.find]
#include = ["robustranking"]
# Project URLs
[project.urls]
"Homepage" = "https://github.com/jeroenrook/robustranking"
"Repository" = "https://github.com/jeroenrook/robustranking"
[tool.yapf]
based_on_style = "pep8"
column_limit = 120
split_before_logical_operator = true
allow_split_before_dict_value = false