-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
73 lines (66 loc) · 1.98 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# see https://flit.pypa.io/en/latest/pyproject_toml.html
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "niceSmartCRM"
description = "nicegui based Customer Relation Ship Management"
keywords = [ "nicegui", "CRM"]
home-page = "https://github.com/BITPlan/niceSmartCRM"
authors = [
{name = "Wolfgang Fahl", email = "[email protected]"}
]
maintainers = [
{ name = "Wolfgang Fahl", email = "[email protected]" },
]
readme = "README.md"
license = {text = "Apache-2.0"}
dependencies = [
# https://github.com/WolfgangFahl/nicegui_widgets
"ngwidgets>=0.19.4",
# https://pypi.org/project/dataclasses-json/
"dataclasses-json>=0.6.1",
# https://github.com/trentm/python-markdown2
"markdown2>=2.4.11",
# https://pypi.org/project/pymysql/
"pymysql>=1.1.0",
# https://pypi.org/project/PyYAML/
"PyYAML>=6.0.1",
# https://pypi.org/project/linkml/
"linkml>=1.6.8"
#
]
requires-python = ">=3.9"
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Software Development :: User Interfaces",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License"
]
dynamic = ["version"]
[tool.hatch.version]
path = "crm/__init__.py"
[project.urls]
Home = "https://github.com/BITPlan/niceSmartCRM"
Documentation = "https://wiki.bitplan.com/index.php/niceSmartCRM"
Source = "https://github.com/BITPlan/niceSmartCRM"
[project.optional-dependencies]
test = [
"green",
"tox",
]
[tool.hatch.build.targets.wheel]
only-include = ["crm"]
[tool.hatch.build.targets.wheel.sources]
"crm" = "crm"
[project.scripts]
smartcrm = "crm.crm_cmd:main"