Skip to content

Commit

Permalink
add README
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-francois committed Sep 1, 2022
1 parent d0c92b9 commit 54c2542
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
from setuptools import setup

# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
name='cmtb',
version='0.0.1',
description='Confusion matrix in tensorboard',
url='https://github.com/mr-francois/cmtb',
author_email='mr.francois@gmx.de',
install_requires=['tensorflow', 'numpy', 'sklearn', 'matplotlib'],
long_description=long_description,
long_description_content_type='text/markdown',
py_modules=[]
)

0 comments on commit 54c2542

Please sign in to comment.