-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 1.11 KB
/
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
33
34
from setuptools import find_packages, setup
from setuptools.dist import Distribution
class BinaryDistribution(Distribution):
def is_pure(self):
return False
setup(
name="lsmgridtrack",
version="0.4.2",
description="A Python module providing a framework for deformable image registration of 3D images from multiphoton laser scanning microscopy. It is aimed at a technique involving the photobleaching of a 3D grid onto the image and then observing this grid region in unloaded and loaded states.",
packages=find_packages("."),
url="https://github.com/siboles/lsmgridtrack",
author="Scott Sibole",
author_email="[email protected]",
license="BSD 3-Clause",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: BSD 3-Clause",
"Programming Language :: Python",
],
package_data={
"lsmgridtrack": [
"test/data/*.nii",
"test/data/testRandom.yaml",
"test/data/resonance.yaml",
"test/data/ref_seq/*.tif",
"test/data/def_seq/*.tif",
]
},
distclass=BinaryDistribution,
)