Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include fairadapt.R in package #520

Merged
merged 1 commit into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
recursive-include aif360/data/ *
include LICENSE
recursive-include aif360/data/ *.md *.R
recursive-include aif360/sklearn/ *.R
graft docs
prune docs/build
prune docs/FAT2019-Tutorial
prune docs/oreilly-tutorial-2019
graft examples
graft tests
22 changes: 11 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,6 @@
long_description=long_description,
long_description_content_type='text/markdown',
license='Apache License 2.0',
packages=[pkg for pkg in find_packages() if pkg.startswith('aif360')],
python_requires='>=3.8',
install_requires=[
'numpy>=1.16',
'scipy>=1.2.0',
'pandas>=0.24.0',
'scikit-learn>=1.0',
'matplotlib',
],
extras_require=extras,
package_data={'aif360': ['data/*', 'data/*/*', 'data/*/*/*']},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
Expand All @@ -61,6 +50,17 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
packages=find_packages(include=["aif360*"]),
python_requires='>=3.8',
install_requires=[
'numpy>=1.16',
'scipy>=1.2.0',
'pandas>=0.24.0',
'scikit-learn>=1.0',
'matplotlib',
],
extras_require=extras,
package_data={'': ['*.md', '*.R']},
include_package_data=True,
zip_safe=False)

Loading