2021-09-29 20:44:05 +02:00
|
|
|
[build-system]
|
|
|
|
requires = ["flit_core>=3.2"]
|
|
|
|
build-backend = "flit_core.buildapi"
|
|
|
|
|
|
|
|
[project]
|
2021-11-19 23:31:25 +01:00
|
|
|
name = "nervtn_server.apps.accounting"
|
2021-09-29 20:44:05 +02:00
|
|
|
version = "0.0.1"
|
|
|
|
requires-python = ">=3.8"
|
|
|
|
dependencies = [
|
|
|
|
"Sphinx>=3.0.0",
|
|
|
|
"Django>=3.1"
|
|
|
|
]
|
|
|
|
license = {text = "EUPL-1.2"}
|
|
|
|
authors = [
|
|
|
|
{name = "Nerv Project ASBL", email = "contact@nerv-project.eu"},
|
|
|
|
{name = "kujiu"},
|
|
|
|
{name = "ptitgnu"}
|
|
|
|
]
|
|
|
|
maintainers = [
|
|
|
|
{name = "Nerv Project ASBL", email = "contact@nerv-project.eu"},
|
|
|
|
{name = "kujiu"},
|
|
|
|
{name = "ptitgnu"}
|
|
|
|
]
|
2021-11-16 00:51:12 +01:00
|
|
|
description = "NervTN - accounting module for server"
|
2021-09-29 20:44:05 +02:00
|
|
|
readme = {file = "README.rst", content-type = "text/x-rst"}
|
|
|
|
keywords = ["management", "accounting", "creators", "writing",
|
|
|
|
"accessibility", "security"]
|
|
|
|
classifiers = [
|
|
|
|
"Framework :: Sphinx",
|
|
|
|
"Framework :: Sphinx :: Extension",
|
|
|
|
"Framework :: Django",
|
|
|
|
"Framework :: Django :: 3.1",
|
|
|
|
"Framework :: Django :: 3.2",
|
|
|
|
"Development Status :: 1 - Planning",
|
|
|
|
"Environment :: Web Environment",
|
|
|
|
"Intended Audience :: Customer Service",
|
|
|
|
"Intended Audience :: Financial and Insurance Industry",
|
|
|
|
"Intended Audience :: Healthcare Industry",
|
|
|
|
"Intended Audience :: Information Technology",
|
|
|
|
"Intended Audience :: Manufacturing",
|
|
|
|
"Intended Audience :: Other Audience",
|
|
|
|
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
|
|
|
|
"Programming Language :: JavaScript",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Topic :: Adaptive Technologies",
|
|
|
|
"Topic :: Office/Business :: Financial :: Accounting",
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
homepage = "https://tn.nerv-project.eu"
|
|
|
|
repository = "https://procrastinator.nerv-project.eu/nerv-project/nervtn"
|
|
|
|
documentation = "https://tn.nerv-project.eu"
|
|
|
|
issues = "https://procrastinator.nerv-project.eu/nerv-project/nervtn/issues"
|
|
|
|
editor = "https://www.nerv-project.eu"
|
|
|
|
changelog = "https://procrastinator.nerv-project.eu/nerv-project/nervtn/raw/branch/main/CHANGES.rst"
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
tests = [
|
|
|
|
"tox",
|
|
|
|
"pytest",
|
|
|
|
"flake8",
|
|
|
|
"pylint",
|
|
|
|
"pytest-cov"
|
|
|
|
]
|
|
|
|
setup = [
|
|
|
|
"pytest-runner",
|
|
|
|
"flake8",
|
|
|
|
"pylint",
|
|
|
|
"babel",
|
|
|
|
"flit",
|
|
|
|
]
|
|
|
|
doc = [
|
|
|
|
"Sphinx",
|
|
|
|
"sphinx-nervproject-theme",
|
|
|
|
"sphinxcontrib-actdiag",
|
|
|
|
"sphinxcontrib-blockdiag",
|
|
|
|
"sphinxcontrib-nwdiag",
|
|
|
|
"sphinxcontrib-seqdiag",
|
|
|
|
"sphinxcontrib-bibtex",
|
|
|
|
"sphinxemoji",
|
|
|
|
"sphinx-galleria",
|
|
|
|
"sphinx-fasvg",
|
|
|
|
"sphinx-issues",
|
|
|
|
"sphinx-sitemap",
|
|
|
|
"sphinx-git"
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
2021-11-19 23:31:25 +01:00
|
|
|
[project.entry-points."nervtn_server.apps"]
|
2021-09-29 20:44:05 +02:00
|
|
|
|
|
|
|
[project.entry-points."nervtn.client.apps"]
|
|
|
|
|
|
|
|
[project.entry-points."nervtn.client.tui.apps"]
|
|
|
|
|
|
|
|
[project.entry-points."nervtn.client.gui.apps"]
|
|
|
|
|
|
|
|
[tool.flit.module]
|
|
|
|
name = "nervtn"
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
minversion = "6.0"
|
|
|
|
addopts = "-ra -q"
|
|
|
|
testpaths = [
|
|
|
|
"tests",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.babel.extract_messages]
|
|
|
|
mapping_file = "babel.cfg"
|
|
|
|
output_file = "locale/nervtn.pot"
|
|
|
|
keywords = ["_", "__", "l_", "lazy_gettext", "gettext", "ngettext"]
|
|
|
|
add_comments = "Translators:"
|
|
|
|
|
|
|
|
[tool.babel.init_catalog]
|
|
|
|
domain = "nervtn"
|
|
|
|
input_file = "locale/nervtn.pot"
|
|
|
|
output_dir = "locale/"
|
|
|
|
|
|
|
|
[tool.babel.update_catalog]
|
|
|
|
domain = "nervtn"
|
|
|
|
input_file = "locale/nervtn.pot"
|
|
|
|
output_dir = "locale/"
|
|
|
|
|
|
|
|
[tool.babel.compile_catalog]
|
|
|
|
domain = "nervtn"
|
|
|
|
directory = "locale/"
|