-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
68 lines (46 loc) · 1.59 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
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
# Package name.
name = "rfflearn"
# List of attributes that will be captured dynamically.
dynamic = ["version"]
# Authors.
authors = [{name="Tetsuya Ishikawa", email="[email protected]"}]
# Package description.
description = "Implementation of random Fourier features for kernel method, like support vector machine and Gaussian process model"
# Readme file.
readme = "README.md"
# License file.
license = {file = "LICENSE"}
# Required Python version.
requires-python = ">=3.9"
# Dependencies of the other Python packages.
dependencies = ["numpy>=1.19.0", "scipy>=1.6.0", "pandas>=1.2.1", "scikit-learn>=0.24.0"]
# Classification tags.
classifiers = [
# How mature is this project? Common values are.
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
# Indicate who your project is intended for.
"Intended Audience :: Developers",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
# Pick your license as you wish.
"License :: OSI Approved :: MIT License",
# Operating system assumed to be used.
"Operating System :: OS Independent",
]
[project.urls]
# GitHub repository URL.
Repository = "https://github.com/tiskw/random-fourier-features"
# GitHub issue URL.
Issues = "https://github.com/tiskw/random-fourier-features/issues"
[tool.hatch.build.targets.wheel]
packages = ["rfflearn"]
[tool.hatch.version]
# Path to the file that contains `__version__` variable.
path = "rfflearn/rfflearn_common.py"