-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (41 loc) · 1.09 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
[build-system]
requires = ["setuptools >= 61"]
build-backend = "setuptools.build_meta"
[project]
name = "example"
version = "1.0"
description = "An example of discrete observation models for pypfilt"
readme = "README.md"
requires-python = ">= 3.8"
license = {file = "LICENSE"}
authors = [
{name = "Rob Moss", email = "rgmoss@unimelb.edu.au"}
]
maintainers = [
{name = "Rob Moss", email = "rgmoss@unimelb.edu.au"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"plotnine ~= 0.12",
"polars[numpy,pandas] ~= 0.17",
"pypfilt == 0.8.0",
]
[tool.setuptools]
# Disable automatic package discovery.
py-modules = []
[tool.ruff]
# Enable pyflakes (F), pycodestyle (E, W), and flake8-bugbear (B).
select = ["F", "E", "W", "B"]
line-length = 78
target-version = "py38"
[tool.blue]
line-length = 78
target-version = ["py38"]