|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | + |
| 6 | +[project] |
| 7 | +name = "OpenGeodeWeb-Back" |
| 8 | +version = "0.0.16" |
| 9 | +authors = [ |
| 10 | + { name= "Geode-solutions", email= "[email protected]" }, |
| 11 | +] |
| 12 | +description = "OpenGeodeWeb-Back is an open source framework that proposes handy python functions and wrappers for the OpenGeode ecosystem" |
| 13 | +readme = "README.md" |
| 14 | +requires-python = ">=3.8" |
| 15 | +classifiers = [ |
| 16 | + "Programming Language :: Python :: 3", |
| 17 | + "License :: OSI Approved :: MIT License", |
| 18 | + "Operating System :: OS Independent", |
| 19 | +] |
| 20 | +dependencies = [ |
| 21 | + "geode-viewables>=2.0.3", |
| 22 | + "opengeode-core>=14.4.1", |
| 23 | + "opengeode-geosciences>=7.1.1", |
| 24 | + "opengeode-geosciencesio>=4.1.6", |
| 25 | + "opengeode-inspector>=3.0.7", |
| 26 | + "opengeode-io>=6.0.10", |
| 27 | +] |
| 28 | + |
| 29 | +[project.urls] |
| 30 | +"Homepage" = "https://github.com/Geode-solutions/OpenGeodeWeb-Back" |
| 31 | +"Bug Tracker" = "https://github.com/Geode-solutions/OpenGeodeWeb-Back/issues" |
| 32 | + |
| 33 | +[tool.setuptools.packages.find] |
| 34 | +where = ["src"] |
| 35 | +namespaces = false |
| 36 | + |
| 37 | +[tool.setuptools.dynamic] |
| 38 | +dependencies = {file = ["requirements.txt"]} |
| 39 | + |
| 40 | +[tool.semantic_release] |
| 41 | +version_variable = "pyproject.toml:version" |
| 42 | + |
| 43 | +[tool.semantic_release.branches.master] |
| 44 | +match = "master" |
| 45 | + |
| 46 | +[tool.semantic_release.branches.next] |
| 47 | +match = "next" |
| 48 | +prerelease_tag = "rc" |
| 49 | +prerelease = true |
0 commit comments