Skip to content

Commit

Permalink
improve setup descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
giotto-learn committed Jun 17, 2022
1 parent d441ca7 commit 9df7ffe
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


version_file = os.path.join("gdeep", "_version.py")
__version__ = '0.0.1' # initialise the variable
__version__ = '0.0.0' # initialise the variable
with open(version_file) as f:
exec(f.read())

Expand All @@ -19,7 +19,7 @@
DESCRIPTION = "Toolbox for Deep Learning and Topological Data Analysis."
with codecs.open("README.md", encoding="utf-8-sig") as f:
LONG_DESCRIPTION = f.read()
LONG_DESCRIPTION_TYPE = "text/x-md"
LONG_DESCRIPTION_TYPE = "text/markdown"
MAINTAINER = "Matteo Caorsi"
MAINTAINER_EMAIL = "[email protected]"
URL = "https://github.com/giotto-ai/giotto-deep"
Expand All @@ -29,22 +29,22 @@
CLASSIFIERS = ["Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Programming Language :: C++",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"]
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"]
KEYWORDS = "deep learning, topological data analysis, persistent " \
"homology, persistence diagrams"
INSTALL_REQUIRES = requirements
EXTRAS_REQUIRE = {"tests": ["pytest",
"flake8"],
"flake8",
"mypy"],
"doc": ["openml",
"sphinx",
"nbconvert",
Expand Down

0 comments on commit 9df7ffe

Please sign in to comment.