Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ __pycache__/
.installed.cfg
*.egg
MANIFEST
dist/

# Installer logs
pip-log.txt
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Fast algorithms for GPU

# Install
*pip is not available right now*
```shell
pip install kerops
```
Expand Down
2 changes: 1 addition & 1 deletion kerops/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.0.3'
__version__ = '0.0.4'
20 changes: 17 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,27 @@ build-backend = 'setuptools.build_meta'

[project]
name = 'kerops'
readme = 'README.md'
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]'}
]
dynamic = ['version']
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
Expand All @@ -27,4 +41,4 @@ include = ['kerops']

[tool.setuptools.dynamic]
version = { attr = 'kerops.__version__.__version__' }
dependencies = { file = ['requirements.txt'] }
dependencies = { file = 'requirements.txt' }