-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #232 from frreiss/branch-0_1_1
Prep for point release to fix issue #231
- Loading branch information
Showing
3 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include LICENSE.txt | ||
include package.md | ||
include requirements.txt | ||
recursive-include text_extensions_for_pandas/resources * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,9 +22,12 @@ | |
with open('requirements.txt') as fh: | ||
requirements = fh.read().splitlines() | ||
|
||
resources_dir = "text_extensions_for_pandas/resources" | ||
|
||
|
||
setuptools.setup( | ||
name="text_extensions_for_pandas", | ||
version="0.1", | ||
version="0.1.1", | ||
author="IBM", | ||
author_email="[email protected]", | ||
description="Natural language processing support for Pandas dataframes.", | ||
|
@@ -40,4 +43,10 @@ | |
"Topic :: Scientific/Engineering", | ||
], | ||
python_requires='>=3.6', | ||
package_data={"": ["LICENSE.txt", | ||
f"{resources_dir}/*.css", | ||
f"{resources_dir}/*.js", | ||
f"{resources_dir}/*.png", | ||
f"{resources_dir}/*.svg",]}, | ||
include_package_data=True | ||
) |