Skip to content

Commit 164d4fa

Browse files
Remove pyproject.toml
1 parent 42968ce commit 164d4fa

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

pyproject.toml renamed to .black.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,3 @@ exclude = '''
2323
| dist
2424
)/
2525
'''
26-
27-
[build-system]
28-
requires = ["setuptools>=41.0", "setuptools-scm", "wheel"]
29-
build-backend = "setuptools.build_meta"

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ repos:
1313
hooks:
1414
- id: black
1515
language_version: python3.6
16+
args: ["--config", ".black.toml"]
1617
- repo: local
1718
hooks:
1819
- id: clang-format

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# 3D Point Cloud Kernels
22
Pytorch CPU and CUDA kernels for spatial search and interpolation for 3D point clouds.
33

4-
![Deploy](https://github.com/nicolas-chaulet/torch-points-kernels/workflows/Deploy/badge.svg) ![Unittests](https://github.com/nicolas-chaulet/torch-points-kernels/workflows/Unittests/badge.svg)
4+
[![PyPI version](https://badge.fury.io/py/torch-points-kernels.svg)](https://badge.fury.io/py/torch-points-kernels) ![Deploy](https://github.com/nicolas-chaulet/torch-points-kernels/workflows/Deploy/badge.svg) ![Unittests](https://github.com/nicolas-chaulet/torch-points-kernels/workflows/Unittests/badge.svg)
55

66
## Installation
77
**Requires torch** version 1.0 or higher to be installed before proceeding. Once this is done, simply run

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,13 @@ def get_cmdclass():
5959
requirements = ["torch>=1.1.0"]
6060

6161
url = 'https://github.com/nicolas-chaulet/torch-points-kernels'
62-
__version__="0.6.2"
62+
__version__="0.6.3"
6363
setup(
6464
name="torch-points-kernels",
6565
version=__version__,
6666
author="Nicolas Chaulet",
6767
packages=find_packages(),
68+
description="PyTorch kernels for spatial operations on point clouds"
6869
url=url,
6970
download_url='{}/archive/{}.tar.gz'.format(url, __version__),
7071
install_requires=requirements,

0 commit comments

Comments
 (0)