We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53ca6b1 commit 1bdf7cdCopy full SHA for 1bdf7cd
setup.py
@@ -1,10 +1,17 @@
1
import setuptools
2
3
+
4
+with open("README.md", "r", encoding="utf-8") as fh:
5
+ long_description = fh.read()
6
7
setuptools.setup(
8
name='torchdrift',
- version='0.1.0',
9
+ version='0.1.0.post1',
10
description="Drift Detection for PyTorch",
11
+ long_description=long_description,
12
+ long_description_content_type='text/markdown',
13
author='Orobix Srl and MathInf GmbH',
14
+ url='https://torchdrift.org/',
15
install_requires=['torch'],
- packages=setuptools.find_packages()
16
+ packages=setuptools.find_packages(),
17
)
0 commit comments