forked from zsylvester/segmenteverygrain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 1.27 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
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.2.0",
author="Zoltan Sylvester",
author_email="[email protected]",
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",
packages=['segmenteverygrain'],
install_requires=['numpy','matplotlib',
'scipy','pillow','scikit-image','tqdm','opencv-python',
'networkx','rasterio','shapely','tensorflow','segment-anything'],
classifiers=[
"Programming Language :: Python :: 3",
'Intended Audience :: Science/Research',
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)