-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (34 loc) · 852 Bytes
/
setup.py
File metadata and controls
35 lines (34 loc) · 852 Bytes
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
33
34
35
from setuptools import setup
setup(
name='bardensr',
author='Jackson Loper',
version='0.3.1',
include_package_data=True,
description='barcode demixing through nonnegative spatial regression',
packages=[
'bardensr',
'bardensr.barcodediscovery',
'bardensr.benchmarks',
'bardensr.meshes',
'bardensr.optimization',
'bardensr.plotting',
'bardensr.reconstruction',
'bardensr.preprocessing',
'bardensr.rectangles',
'bardensr.registration',
'bardensr.spot_calling',
'bardensr.spot_calling.blackberry',
],
package_data={
'': ['*.hdf5']
},
install_requires=[
'tensorflow >=2.4.0',
'scikit-image',
'tqdm',
'matplotlib',
'scipy',
'pandas',
'dataclasses',
]
)