forked from AllenInstitute/merquaco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 909 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import pathlib
from setuptools import setup, find_packages
#from merquaco.__init__ import __version__
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# Get requirements
REQUIREMENTS = (HERE / "requirements.txt").read_text()
requirements = REQUIREMENTS.splitlines()
setup(
name="merquaco",
version="0.0.1",
description="Tools for QC on MERSCOPE datasets",
author="Naomi Martin, Paul Olsen",
author_email="[email protected], [email protected]",
url="https://github.com/AllenInstitute/merquaco",
license = "LICENSE",
packages=find_packages(where="."),
package_data={
'': ['*.ilp'],
'merquaco': ['../ilastik_models/*.ilp'],
},
include_package_data=True,
install_requires=requirements,
# entry_points={
# "console_scripts": [
# "merquaco = merquaco.quaco:run",
# ],
# }
)