File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1
1
include LICENSE.txt
2
2
include package.md
3
3
include requirements.txt
4
+ recursive-include text_extensions_for_pandas/resources *
Original file line number Diff line number Diff line change 22
22
with open ('requirements.txt' ) as fh :
23
23
requirements = fh .read ().splitlines ()
24
24
25
+ resources_dir = "text_extensions_for_pandas/resources"
26
+
27
+
25
28
setuptools .setup (
26
29
name = "text_extensions_for_pandas" ,
27
- version = "0.1" ,
30
+ version = "0.1.1 " ,
28
31
author = "IBM" ,
29
32
30
33
description = "Natural language processing support for Pandas dataframes." ,
40
43
"Topic :: Scientific/Engineering" ,
41
44
],
42
45
python_requires = '>=3.6' ,
46
+ package_data = {"" : ["LICENSE.txt" ,
47
+ f"{ resources_dir } /*.css" ,
48
+ f"{ resources_dir } /*.js" ,
49
+ f"{ resources_dir } /*.png" ,
50
+ f"{ resources_dir } /*.svg" ,]},
51
+ include_package_data = True
43
52
)
You can’t perform that action at this time.
0 commit comments