Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
aghand0ur authored Apr 1, 2024
1 parent 1beaa1d commit e58b30d
Showing 1 changed file with 69 additions and 0 deletions.
69 changes: 69 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "geotils"
dynamic = ["version"]
dependencies = [
'albumentations==1.3.1',
'fiona==1.9.5',
'matplotlib==3.8.0',
'numpy==1.26.1',
'opencv-python==4.8.1.78',
'opencv-python-headless==4.8.1.78',
'pandas==2.1.1',
'Pillow==10.1.0',
'scipy==1.11.3',
'seaborn==0.13.1',
'segment-anything',
'shapely==2.0.2',
'tifffile==2023.9.26',
'timm==0.9.2',
'torchvision==0.16.0',
'tqdm==4.66.1',
]
requires-python = ">=3.8"
authors = [
{name = "Ali Ghandour", email = "aghandour@cnrs.edu.lb"},
]
maintainers = [
{name = "Ali Ghandour", email = "aghandour@cnrs.edu.lb"},
]
description = "geotils by GEOAI group"
readme = "README.md"
license = {text = "MIT License"}
keywords = ["geotils", "geospatial", "earth observation"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
]

#[project.optional-dependencies]
#gui = ["PyQt5"]
#cli = [
# "rich",
# "click",
#]

[tool.setuptools.dynamic]
version = {attr = "geotils.__version__"}

[project.urls]
Homepage = "https://geogroup.ai/"
Documentation = "https://readthedocs.org/geotils"
Repository = "https://github.com/geoaigroup/geotils"
"Bug Tracker" = "https://github.com/geoaigroup/geotils/issues"
Changelog = "https://github.com/geoaigroup/geotils/blob/master/CHANGELOG.md"

[project.scripts]
geotils = "geotils.module:function"

#[project.gui-scripts]
#spam-gui = "spam:main_gui"

#[project.entry-points."spam.magical"]
#tomatoes = "spam:main_tomatoes"

0 comments on commit e58b30d

Please sign in to comment.