-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
50 lines (47 loc) · 1.52 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from distutils.core import setup
from setuptools import find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="DeepSlice",
packages=find_packages(),
version="{{VERSION_PLACEHOLDER}}",
license="GPL-3.0",
description="A package to align histology to 3D brain atlases",
long_description=long_description,
long_description_content_type="text/markdown",
author="DeepSlice Team",
package_data={
"DeepSlice": [
"metadata/volumes/placeholder.txt",
"metadata/config.json",
"metadata/weights/*.txt",
]
},
include_package_data=True,
author_email="[email protected]",
url="https://github.com/PolarBean/DeepSlice",
download_url="https://github.com/PolarBean/DeepSlice/archive/refs/tags/{{VERSION_PLACEHOLDER}}.tar.gz",
keywords=["histology", "brain", "atlas", "alignment"],
install_requires=[
"numpy",
"scikit-learn",
"scikit-image",
"tensorflow<=2.15.0",
"h5py",
"typing",
"pandas",
"requests",
"protobuf",
"lxml",
"urllib3==1.26.6",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
],
)