-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (55 loc) · 1.49 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
51
52
53
54
55
56
57
58
59
60
from pathlib import Path
from setuptools import find_packages, setup
here = Path(__file__).parent.absolute()
with open(here / "README.md", encoding="utf-8") as f:
long_description = f.read()
with open(here / "sprm/version.txt") as f:
version = f.read().strip()
setup(
name="SPRM",
version=version,
description="Spatial Process & Relationship Modeling ",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hubmapconsortium/sprm",
author="Ted Zhang, Robert F. Murphy",
author_email="[email protected], [email protected]",
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
keywords="sprm",
packages=find_packages(),
package_data={
"": ["*.txt", "*.pickle"],
},
install_requires=[
"aicsimageio==4.8.0",
"frozendict",
"lxml",
"manhole",
"matplotlib",
"numba",
"numpy",
"opencv-python",
"pandas",
"pint",
"scikit-image==0.22.0",
"scikit-learn",
"shapely",
"tables",
"tifffile==2022.8.12",
"xmltodict",
"umap-learn",
"apng",
"threadpoolctl>3",
],
python_requires=">=3.8",
entry_points={
"console_scripts": [
"sprm=sprm.SPRM:argparse_wrapper",
],
},
zip_safe=False,
)