-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- remove setup.py file - bump-my-version to be used so reverting back
- Loading branch information
1 parent
5ca2b81
commit f8a6799
Showing
4 changed files
with
79 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
[project] | ||
name = "servir-aces" | ||
version = "0.0.1" | ||
dynamic = [ | ||
"dependencies", | ||
] | ||
description = "Agricultural Classification and Estimation Service (ACES)" | ||
readme = "README.md" | ||
requires-python = ">=3.9" | ||
keywords = [ | ||
"remote sensing", | ||
"agriculture", | ||
"machine learning", | ||
"deep learning", | ||
] | ||
license = {text = "GNU General Public License v3.0"} | ||
authors = [ | ||
{name = "Biplov Bhandari", email = "[email protected]"}, | ||
] | ||
classifiers = [ | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: GNU General Public License v3", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
|
||
[tool] | ||
[tool.setuptools.packages.find] | ||
include = ["aces*"] | ||
exclude = ["docs*"] | ||
|
||
[tool.setuptools.dynamic] | ||
dependencies = {file = ["requirements.txt"]} | ||
|
||
|
||
[tool.distutils.bdist_wheel] | ||
universal = true | ||
|
||
|
||
[tool.bumpversion] | ||
current_version = "0.0.1" | ||
commit = true | ||
tag = true | ||
|
||
[[tool.bumpversion.files]] | ||
filename = "pyproject.toml" | ||
search = 'version = "{current_version}"' | ||
replace = 'version = "{new_version}"' | ||
|
||
[[tool.bumpversion.files]] | ||
filename = "aces/__init__.py" | ||
search = '__version__ = "{current_version}"' | ||
replace = '__version__ = "{new_version}"' | ||
|
||
|
||
[tool.flake8] | ||
exclude = [ | ||
"docs", | ||
] | ||
max-line-length = 88 | ||
|
||
|
||
[project.urls] | ||
Homepage = "https://github.com/SERVIR/servir-aces" | ||
|
||
[build-system] | ||
requires = ["setuptools>=64", "setuptools_scm>=8"] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
numpy | ||
tensorflow>=2.9.3 | ||
apache-beam>=2.38.0 | ||
earthengine-api | ||
python-dotenv>=1.0.0 | ||
matplotlib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,5 @@ mkdocstrings-crystal | |
mkdocstrings-python-legacy | ||
pygments | ||
pymdown-extensions | ||
|
||
# apache-beam>=2.38.0 |