Skip to content
Snippets Groups Projects
Commit 0dde7a1a authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Add in setup for python packages.

parent fc025345
Branches
Tags
No related merge requests found
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
target/
# Jupyter Notebook
.ipynb_checkpoints
# pyenv
.python-version
# celery beat schedule file
celerybeat-schedule
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
......@@ -9,9 +9,7 @@ import subprocess
import shlex
import logging
from multiprocessing import cpu_count
import sys
sys.path.append(os.path.abspath('../python_utils'))
import utils
from python_utils import utils
EPILOG = '''
For more details:
......
......@@ -9,10 +9,8 @@ import shutil
import shlex
import logging
from multiprocessing import cpu_count
import sys
import pandas as pd
sys.path.append(os.path.abspath('../python_utils'))
import utils
from python_utils import utils
EPILOG = '''
......
......@@ -9,9 +9,7 @@ import shutil
import shlex
import logging
from multiprocessing import cpu_count
import sys
sys.path.append(os.path.abspath('../python_utils'))
import utils
from python_utils import utils
EPILOG = '''
For more details:
......
......@@ -7,11 +7,8 @@ import argparse
import shutil
import logging
from multiprocessing import cpu_count
import sys
sys.path.append(os.path.abspath('../python_utils'))
import utils
sys.path.append(os.path.abspath('../cross_correlation'))
from xcor import xcor as calculate_xcor
from python_utils import utils
from quality_metrics.xcor import xcor as calculate_xcor
EPILOG = '''
For more details:
......
......@@ -8,8 +8,7 @@ import logging
import shutil
import pandas as pd
import sys
sys.path.append(os.path.abspath('../python_utils'))
import utils
from python_utils import utils
EPILOG = '''
For more details:
......
......@@ -8,8 +8,7 @@ import pandas as pd
import numpy as np
import os
import sys
sys.path.append(os.path.abspath('../python_utils'))
import utils
from python_utils import utils
EPILOG = '''
For more details:
......
......@@ -7,9 +7,7 @@ import argparse
import shutil
import logging
from multiprocessing import cpu_count
import sys
sys.path.append(os.path.abspath('../python_utils'))
import utils
from python_utils import utils
EPILOG = '''
For more details:
......
from distutils.core import setup
from setuptools import find_packages
setup(
name = 'ProcessScripts',
packages = find_packages('.'),
)
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment