forked from zsylvester/segmenteverygrain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 loc) · 961 Bytes
/
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
import setuptools
long_description = """\
"""
setuptools.setup(
name="segmenteverygrain",
version="0.0.4",
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",
],
)