Skip to content

Commit

Permalink
Release version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PrimozGodec committed Mar 19, 2024
1 parent e747503 commit 8b5494d
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
from os import path, walk

VERSION = "0.1.8"
VERSION = "0.2.0"

try:
LONG_DESCRIPTION = open(
Expand All @@ -13,6 +13,7 @@

DATA_FILES = []


def include_documentation(local_dir, install_dir):
global DATA_FILES
doc_files = []
Expand All @@ -21,6 +22,7 @@ def include_documentation(local_dir, install_dir):
[path.join(dirpath, f) for f in files]))
DATA_FILES.extend(doc_files)


include_documentation('doc/_build/html', 'help/orange3-fairness')

setup(
Expand All @@ -34,30 +36,29 @@ def include_documentation(local_dir, install_dir):
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
license="GPL3+",
keywords=(
keywords=[
"orange3 add-on",
"orange3 fairness",
),

],
packages=find_packages(),
package_data={
"orangecontrib.fairness.widgets": ["icons/*"],
},
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
],
],
entry_points={
"orange3.addon": ("Orange3-Fairness = orangecontrib.fairness",),
"orange.widgets": ("Fairness = orangecontrib.fairness.widgets",),
"orange.canvas.help": (
'html-index = orangecontrib.fairness.widgets:WIDGET_HELP_PATH',
'html-index = orangecontrib.fairness.widgets:WIDGET_HELP_PATH',
),
},
},
install_requires=[
"numpy",
"Orange3",
Expand All @@ -71,4 +72,4 @@ def include_documentation(local_dir, install_dir):
]
},
data_files=DATA_FILES,
)
)

0 comments on commit 8b5494d

Please sign in to comment.