-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.49 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.49 KB
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
import setuptools
long_description = """\
'segmenteverygrain' is a Python package that aims to detect grains (or grain-like objects) in images.
The goal is to develop an ML model that does a reasonably good job at detecting most of the grains in a photo,
so that it will be useful for determining grain size and grain shape, a common task in geomorphology and sedimentary geology.
"""
setuptools.setup(
name="segmenteverygrain",
version="0.3.0",
author="Zoltan Sylvester",
author_email="zoltan.sylvester@beg.utexas.edu",
description="a SAM-based model for segmenting grains in images of grains",
keywords = 'sedimentology, geomorphology, grain size, segment anything model',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/zsylvester/segmenteverygrain",
python_requires='>=3.10',
packages=['segmenteverygrain'],
install_requires=['numpy','matplotlib',
'scipy','pillow','scikit-image','tqdm','opencv-python',
'networkx','rasterio','shapely','tensorflow','sam2',
'scikit-learn','rtree','pandas','geopandas','keras'],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
'Intended Audience :: Science/Research',
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)