-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 778 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 778 Bytes
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>=45",
"wheel",
"pybind11>=2.10"
]
# tells pip to use setuptools, which runs setup.py
build-backend = "setuptools.build_meta"
[project]
name = "pyember"
version = "0.0.17"
description = "A statistics and machine learning package."
readme = "README.md"
authors = [{name = "Muchang Bahng", email = "bahngmc@gmail.com"}]
requires-python = ">=3.9"
dependencies = [
"pybind11>=2.10.0"
]
keywords = ["machine learning", "autograd", "deep learning", "statistics"]
[project.urls]
Homepage = "https://github.com/mbahng/pyember"
# [tool.setuptools]
# include-package-data = true
#
# [tool.setuptools.packages.find]
# include = ["ember*"]
# namespaces = true
#
# [tool.setuptools.package-data]
# "*" = ["*.py", "*.pyi", "*.so"]