32 lines
949 B
TOML
32 lines
949 B
TOML
[build-system]
|
|
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "financial_management"
|
|
version = "1.0.0"
|
|
description = "Financial management module for receivables and payments with order-level granularity"
|
|
authors = [{name = "Hermes Agent", email = "hermes@agent.com"}]
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
]
|
|
dependencies = [
|
|
"ahserver",
|
|
"sqlor",
|
|
"appPublic"
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["financial_management*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
financial_management = ["*.json", "*.sql"] |