Skip to content

Commit

Permalink
remove __init__.py and change setup.py file
Browse files Browse the repository at this point in the history
  • Loading branch information
yonghakim committed Nov 7, 2022
1 parent 5aca810 commit 32d2d25
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
Empty file removed meent/nk_data/__init__.py
Empty file.
Empty file.
Empty file removed meent/nk_data/matlab/__init__.py
Empty file.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
from setuptools import setup, find_packages
from glob import glob


setup(
name='meent',
version='0.3.6',
version='0.3.7',
url='https://github.com/kc-ml2/meent',
author='KC ML2',
author_email='yongha@kc-ml2.com',
Expand All @@ -15,4 +17,8 @@
],
python_requires='>=3.8',
long_description_content_type="text/markdown",
data_files=[
('nk_data/filmetrics', glob('meent/nk_data/filmetrics/*.txt')),
('nk_data/matlab', glob('meent/nk_data/matlab/*.mat')),
],
)

0 comments on commit 32d2d25

Please sign in to comment.