File tree Expand file tree Collapse file tree 2 files changed +19
-12
lines changed Expand file tree Collapse file tree 2 files changed +19
-12
lines changed Original file line number Diff line number Diff line change 1
- recursive-include aif360/data/ *
2
1
include LICENSE
2
+ recursive-include aif360/data/ *.md *.R
3
+ recursive-include aif360/sklearn/ *.R
4
+ graft docs
5
+ prune docs/build
6
+ prune docs/FAT2019-Tutorial
7
+ prune docs/oreilly-tutorial-2019
8
+ graft examples
9
+ graft tests
Original file line number Diff line number Diff line change 38
38
long_description = long_description ,
39
39
long_description_content_type = 'text/markdown' ,
40
40
license = 'Apache License 2.0' ,
41
- packages = [pkg for pkg in find_packages () if pkg .startswith ('aif360' )],
42
- python_requires = '>=3.8' ,
43
- install_requires = [
44
- 'numpy>=1.16' ,
45
- 'scipy>=1.2.0' ,
46
- 'pandas>=0.24.0' ,
47
- 'scikit-learn>=1.0' ,
48
- 'matplotlib' ,
49
- ],
50
- extras_require = extras ,
51
- package_data = {'aif360' : ['data/*' , 'data/*/*' , 'data/*/*/*' ]},
52
41
classifiers = [
53
42
"Development Status :: 3 - Alpha" ,
54
43
"Intended Audience :: Developers" ,
61
50
"Programming Language :: Python :: 3.10" ,
62
51
"Programming Language :: Python :: 3.11" ,
63
52
],
53
+ packages = find_packages (include = ["aif360*" ]),
54
+ python_requires = '>=3.8' ,
55
+ install_requires = [
56
+ 'numpy>=1.16' ,
57
+ 'scipy>=1.2.0' ,
58
+ 'pandas>=0.24.0' ,
59
+ 'scikit-learn>=1.0' ,
60
+ 'matplotlib' ,
61
+ ],
62
+ extras_require = extras ,
63
+ package_data = {'' : ['*.md' , '*.R' ]},
64
64
include_package_data = True ,
65
65
zip_safe = False )
66
66
You can’t perform that action at this time.
0 commit comments