Skip to content

Commit f6b2b83

Browse files
committed
Releasing 0.1.1 version
1 parent f51e7cc commit f6b2b83

File tree

2 files changed

+16
-13
lines changed

2 files changed

+16
-13
lines changed

MANIFEST.in

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
include README.md
1+
include README.md
2+
graft pytorch_block_sparse/cutlass/*.h
3+
graft pytorch_block_sparse/native/*.h
4+
graft pytorch_block_sparse/tests/.py
5+
global-exclude *.py[cod]
6+
global-exclude *~

setup.py

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,22 @@
44
import os
55
rootdir = os.path.dirname(os.path.realpath(__file__))
66

7-
def readme():
8-
with open('README.md') as f:
9-
return f.read()
7+
version = "0.1.1"
108

119
setup(name='pytorch_block_sparse',
12-
version='v0.1',
13-
description='pytorch_block_sparse is a python package for fast block sparse matrices computation, drop in replacement for torch.nn.Linear .',
14-
long_description=readme(),
10+
version=version,
11+
description='PyTorch extension for fast block sparse matrices computation, drop in replacement for torch.nn.Linear.',
12+
long_description="pytorch_block_sparse is a PyTorch extension for fast block sparse matrices computation, drop in replacement for torch.nn.Linear",
1513
classifiers=[
1614
'Development Status :: 4 - Beta',
17-
'License :: OSI Approved :: BSD 3-Clause "New" or "Revised" License',
15+
'License :: OSI Approved :: BSD License',
1816
'Programming Language :: Python :: 3.0',
1917
],
20-
keywords='',
21-
url='',
22-
author='',
23-
author_email='',
24-
download_url='https://github.com/huggingface/pytorch_block_sparse/archive/v0.1.tar.gz',
18+
keywords='PyTorch,sparse,matrices,machine learning',
19+
url='https://github.com/huggingface/pytorch_block_sparse',
20+
author='François Lagunas',
21+
author_email='francois.lagunas@m4x.org',
22+
download_url=f'https://test.pypi.org/project/pytorch-block-sparse/{version}/',
2523
license='BSD 3-Clause "New" or "Revised" License',
2624
packages=['pytorch_block_sparse'],
2725
install_requires=[],

0 commit comments

Comments
 (0)