-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (28 loc) · 1003 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "numbaclass"
version = "0.1.2a"
description = 'Convert Python class to Numba aware class, using StructRef.'
authors = [{ name = "Anton Lobachev", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = []
classifiers = [
"Development Status :: 3 - Alpha",
# "Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = ["numba"]
[project.urls]
Documentation = "https://github.com/anvlobachev/numbaclass#readme"
Issues = "https://github.com/anvlobachev/numbaclass/issues"
Source = "https://github.com/anvlobachev/numbaclass"