| garciadeblas | 3099aef | 2025-10-01 10:56:51 +0200 | [diff] [blame] | 1 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 2 | # you may not use this file except in compliance with the License. |
| 3 | # You may obtain a copy of the License at |
| 4 | # |
| 5 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 6 | # |
| 7 | # Unless required by applicable law or agreed to in writing, software |
| 8 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
| 10 | # implied. |
| 11 | # See the License for the specific language governing permissions and |
| 12 | # limitations under the License. |
| 13 | |
| 14 | [build-system] |
| 15 | requires = ["setuptools>=61", "wheel", "setuptools_scm>=8.0"] |
| 16 | build-backend = "setuptools.build_meta" |
| 17 | |
| 18 | [project] |
| garciadeblas | 7b3ae04 | 2025-12-09 19:19:44 +0100 | [diff] [blame] | 19 | name = "osm-common" |
| garciadeblas | 3099aef | 2025-10-01 10:56:51 +0200 | [diff] [blame] | 20 | description = "OSM common utilities" |
| 21 | readme = "README.rst" |
| 22 | authors = [ |
| 23 | {name = "ETSI OSM", email = "osmsupport@etsi.com"} |
| 24 | ] |
| 25 | maintainers = [ |
| 26 | {name = "ETSI OSM", email = "osmsupport@etsi.com"} |
| 27 | ] |
| garciadeblas | 7b3ae04 | 2025-12-09 19:19:44 +0100 | [diff] [blame] | 28 | license = { text = "Apache-2.0" } |
| garciadeblas | 3099aef | 2025-10-01 10:56:51 +0200 | [diff] [blame] | 29 | dynamic = ["dependencies", "version"] |
| garciadeblas | 7b3ae04 | 2025-12-09 19:19:44 +0100 | [diff] [blame] | 30 | requires-python = ">= 3.10" |
| garciadeblas | 3099aef | 2025-10-01 10:56:51 +0200 | [diff] [blame] | 31 | |
| 32 | [tool.setuptools_scm] |
| 33 | write_to = "src/osm_common/_version.py" |
| 34 | version_scheme = "guess-next-dev" |
| 35 | local_scheme = "node-and-date" |
| 36 | |
| 37 | [tool.setuptools.packages.find] |
| 38 | where = ["src"] |
| 39 | |
| 40 | [tool.setuptools.dynamic] |
| garciadeblas | 53e24f3 | 2025-12-09 13:15:39 +0100 | [diff] [blame] | 41 | dependencies = { file = ["./requirements.txt"] } |
| garciadeblas | 3099aef | 2025-10-01 10:56:51 +0200 | [diff] [blame] | 42 | |