Skip to content

Commit

Permalink
Updated setup descr.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoloverardo committed Apr 9, 2021
1 parent fb30266 commit 800c965
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,27 @@
from distutils.core import setup
from setuptools import find_packages
import sys

from pathlib import Path # noqa E402

CURRENT_DIR = Path(__file__).parent
sys.path.insert(0, str(CURRENT_DIR))


def get_long_description() -> str:
return (
(CURRENT_DIR / "README.md").read_text(encoding="utf8")
)


setup(
name="matrixreg",
packages=find_packages(),
version="0.1",
license="MIT",
description="Implementation of the MatrixRegression (MR) algorithm for online-learning multi-label text classification, by Popa, Zeitouni & Gardarin",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="Nicolò Verardo",
author_email="[email protected]",
url="https://github.com/nicoloverardo/matrix_regression",
Expand All @@ -20,7 +35,7 @@
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
Expand Down

0 comments on commit 800c965

Please sign in to comment.