forked from emanuega/MERlin
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
31 lines (28 loc) · 883 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
import os
import setuptools
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"License :: Restricted use",
"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="merlin",
version="0.1.6",
description="MERFISH decoding software",
author="George Emanuel",
author_email="[email protected]",
license="Restricted use",
packages=setuptools.find_packages(),
install_requires=install_requires,
entry_points={
'console_scripts': ["merlin=merlin.merlin:merlin"]
},
classifiers=CLASSIFIERS
)