Skip to content

Commit

Permalink
Merge pull request #20 from franneck94/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
franneck94 authored Nov 23, 2020
2 parents 56f20ab + f547527 commit ee14414
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
!requirements.txt
build/
!docs/build/
.benchmarks/

# Byte-compiled / optimized / DLL files
__pycache__/
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ known_third_party =
skimage,
cv2,
scipy
known_first_party =
known_first_party = tensorcross
multi_line_output = 3
force_single_line = True

Expand Down
12 changes: 3 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,8 @@
from tensorcross.version import __version__

from setuptools import find_packages
from setuptools import setup


def get_license() -> str:
with open("LICENSE") as f:
return f.read()


CLASSIFIERS = """\
License :: OSI Approved
Programming Language :: Python :: 3.8
Expand All @@ -23,7 +17,7 @@ def get_license() -> str:
AUTHORS = "Jan Schaffranek, Saif Al-Dilaimi"
DESCRIPTION = ("Cross Validation, Grid Search and Random Search "
"for TensorFlow Datasets.")
LICENSE = get_license()
LICENSE = "MIT"
README = ("Cross Validation, Grid Search and Random Search for TensorFlow "
"Datasets. For more information see here: "
"https://github.com/franneck94/TensorCross")
Expand All @@ -38,7 +32,7 @@ def get_license() -> str:
"scikit-learn"
]

PACKAGES = find_packages(include="tensorcross")
PACKAGES = ['tensorcross']

metadata = dict(
name=DISTNAME,
Expand All @@ -50,7 +44,7 @@ def get_license() -> str:
install_requires=INSTALL_REQUIRES,
description=DESCRIPTION,
classifiers=[CLASSIFIERS],
license=LICENSE,
license=LICENSE
)


Expand Down
2 changes: 1 addition & 1 deletion tensorcross/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.2"
__version__ = "0.1.3"

0 comments on commit ee14414

Please sign in to comment.