-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (46 loc) · 1.35 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "intnan"
description = "Function collection for handling integers with NaNs."
dynamic = ["version"]
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE.txt"}
authors = [
{name = "Michael Löffler", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: BSD License",
]
keywords = ["integer", "nan", "missing values", "intnan"]
requires-python = ">=3.9"
dependencies = ["numpy"]
[project.optional-dependencies]
dev = [
"pytest",
"flake8",
"numba",
]
[project.urls]
source = "https://github.com/ml31415/intnan"
tracker = "https://github.com/ml31415/intnan/issues"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
honor_noqa = true
[tool.setuptools.packages.find]
include = ["intnan*"]
[tool.setuptools_scm]
write_to = "intnan/_version.py"