Skip to content

Commit 4622c16

Browse files
committed
More setup.py stuff
1 parent db2385e commit 4622c16

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
from setuptools import setup
15+
from setuptools import setup, find_packages
1616
from io import open
1717

1818

@@ -29,16 +29,16 @@ def load_requirements(file_list=None):
2929

3030

3131
def readme():
32-
with open("doc/doc_en/whl_en.md", encoding="utf-8-sig") as f:
32+
with open("README.md", encoding="utf-8-sig") as f:
3333
README = f.read()
3434
return README
3535

3636

3737
setup(
3838
name="unstructured.paddleocr",
39-
packages=["unstructured.paddleocr"],
40-
version="0.2.6.2",
41-
package_dir={"unstructured.paddleocr": ""},
39+
packages=find_packages(),
40+
version="0.2.6.3",
41+
package_dir={"paddleocr": ""},
4242
include_package_data=True,
4343
entry_points={"console_scripts": ["paddleocr= paddleocr.paddleocr:main"]},
4444
install_requires=[

0 commit comments

Comments
 (0)