Skip to content

Commit 1bdf7cd

Browse files
committed
pypi data
1 parent 53ca6b1 commit 1bdf7cd

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

setup.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
import setuptools
22

3+
4+
with open("README.md", "r", encoding="utf-8") as fh:
5+
long_description = fh.read()
6+
37
setuptools.setup(
48
name='torchdrift',
5-
version='0.1.0',
9+
version='0.1.0.post1',
610
description="Drift Detection for PyTorch",
11+
long_description=long_description,
12+
long_description_content_type='text/markdown',
713
author='Orobix Srl and MathInf GmbH',
14+
url='https://torchdrift.org/',
815
install_requires=['torch'],
9-
packages=setuptools.find_packages()
16+
packages=setuptools.find_packages(),
1017
)

0 commit comments

Comments
 (0)