forked from CarragherLab/cptools2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 744 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
setup(name="cptools2",
version=0.2,
url="https://github.com/swarchal/cptools2",
description="Tools for running CellProfiler on HPC setups",
author="Scott Warchal",
license="MIT",
packages=["cptools2"],
tests_require=["pytest"],
python_requires=">=3.5",
entry_points={
"console_scripts": ["cptools2 = cptools2.__main__:main"]
},
dependency_links=[
"https://github.com/carragherlab/parserix/tarball/new_ix#egg=parserix-0.2",
"https://github.com/carragherlab/scissorhands/tarball/master#egg=scissorhands-0.2",
],
install_requires=["pyyaml>=5.1", "pandas>=0.16", "parserix>=0.2", "scissorhands>=0.2"])