Skip to content

Commit 676d503

Browse files
committed
setup.py
1 parent 45f6c45 commit 676d503

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

docta/utils/__init__.py

Whitespace-only changes.

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def _read_reqs(relpath):
2020

2121
exec(open('docta/version.py').read())
2222
setup(
23-
name='docta',
23+
name='docta.ai',
2424
version=__version__,
2525
description='Docta.ai',
2626
long_description=long_description,
@@ -50,8 +50,7 @@ def _read_reqs(relpath):
5050

5151
# Note that this is a string of words separated by whitespace, not a list.
5252
keywords='Data diagnosis, curation',
53-
package_dir={'': 'docta'},
54-
packages=find_packages(where='docta'),
53+
packages=find_packages(),
5554
include_package_data=True,
5655
install_requires=REQUIREMENTS,
5756
python_requires='>=3.7',

tools/docta_tabular_rare_pattern.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sys
22
import os
3-
o_path = os.getcwd()
4-
sys.path.append(o_path) # set path so that modules from other foloders can be loaded
3+
# o_path = os.getcwd()
4+
# sys.path.append(o_path) # set path so that modules from other foloders can be loaded
55
import pandas as pd
66
import torch
77

0 commit comments

Comments
 (0)