Skip to content

Commit

Permalink
include fairadapt.R (#520)
Browse files Browse the repository at this point in the history
* also include docs, examples, tests in source dist
  • Loading branch information
hoffmansc authored Feb 23, 2024
1 parent a41b0ab commit b58cdb8
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 12 deletions.
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)

0 comments on commit b58cdb8

Please sign in to comment.