-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (23 loc) · 924 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
import setuptools
long_description = """\
"""
setuptools.setup(
name="SatelliteInPaint",
version="0.0.1",
author="Daniel Buscombe",
author_email="[email protected]",
description="A Stable Diffusion-based way to inpaint satellite imagery",
keywords = 'image inpainting, Earth observation, satellite imagery, Stable Diffusion model',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/dbuscombe-usgs/SatelliteInPaint",
packages=['SatelliteInPaint'],
install_requires=['numpy','diffusers','rasterio','matplotlib',
'transformers', 'accelerate','torch','pillow','scikit-image','tqdm'],
classifiers=[
"Programming Language :: Python :: 3",
'Intended Audience :: Science/Research',
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)