Skip to content
This repository was archived by the owner on Nov 2, 2023. It is now read-only.

Commit 8e90025

Browse files
committed
correct setup.py for dist
1 parent b9cbd2d commit 8e90025

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
recursive-include wekeypedia *.py

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
from distutils.core import setup
1+
from setuptools import setup, find_packages
2+
23
setup(
34
name = 'wekeypedia',
4-
packages = ['wekeypedia'], # this must be the same as the name above
5+
# packages = ['wekeypedia'], # this must be the same as the name above
6+
packages = find_packages(exclude=["test*"]), # this must be the same as the name above
57
version = '0.1.2',
68
description = 'toolkit to build datasets around wikipedia pages and to compute extra metrics',
79
author = 'tam kien duong',

wekeypedia/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +0,0 @@
1-
from pkgutil import extend_path
2-
__path__ = extend_path(__path__, __name__)

0 commit comments

Comments
 (0)