-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.16 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
[build-system]
requires = ['setuptools>=43.0.0', 'wheel']
build-backend = 'setuptools.build_meta'
[project]
name = 'kerops'
dynamic = ['dependencies', 'version']
description = "Efficient gpu algorithms for 3D computer vision"
readme = 'README.md'
requires-python = '>=3.10'
license = { file = 'LICENSE' }
keywords = ['computer vision', 'fast', 'gpu', 'triton']
authors = [
{name='AnihilatorGun', email='[email protected]'}
]
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
[project.urls]
'Homepage' = 'https://github.com/neuro-ml/kerops'
'Issues' = 'https://github.com/neuro-ml/kerops/issues'
'Source' = 'https://github.com/neuro-ml/kerops'
[tool.black]
line-length = 120
skip-string-normalization = true
[tool.isort]
line_length = 120
lines_after_imports = 2
profile = 'black'
combine_as_imports = true
[tool.setuptools.packages.find]
where = ['.']
[tool.setuptools.dynamic]
version = { attr = 'kerops.__version__.__version__' }
dependencies = { file = 'requirements.txt' }