forked from spacetx/starfish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 982 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
#!/usr/bin/env python
import os
import setuptools
CLASSIFIERS = [
"Development Status :: 2 - Pre-Alpha",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
install_requires = [line.rstrip() for line in open(os.path.join(os.path.dirname(__file__), "REQUIREMENTS.txt"))]
setuptools.setup(
name="starfish",
version="0.0.6",
description="Pipelines and pipeline components for the analysis of image-based transcriptomics data",
author="Deep Ganguli",
author_email="dganguli@chanzuckerberg.com",
license="MIT",
packages=setuptools.find_packages(),
install_requires=install_requires,
entry_points={
'console_scripts': "starfish=starfish.starfish:starfish"
},
classifiers=CLASSIFIERS
)