-
Notifications
You must be signed in to change notification settings - Fork 95
/
pyproject.toml
90 lines (85 loc) · 2.46 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# see https://flit.pypa.io/en/latest/pyproject_toml.html
[build-system]
#requires = ["flit_core >=3.2,<4"]
#build-backend = "flit_core.buildapi"
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "justpy"
description = "JustPy is an object-oriented, component based, high-level Python Web Framework that requires no front-end programming. "
keywords = ["nicegui", "gui", "webframework", "websockets"]
authors = [
{name = "Eli Mintz", email = "eli.mintz@gmail.com"}
]
maintainers = [
{ name = "Wolfgang Fahl", email = "wf@bitplan.com" },
]
readme = "README.md"
# flit_core.config.ConfigError: license field should be <class 'dict'>, not <class 'str'>
license = { file="LICENSE" }
dependencies = [
'addict>=2.4.0',
'itsdangerous>=2.1.2',
'jinja2>=3.1.2',
'hjson>=3.1.0',
'httpx>=0.23.0',
'psutil>=5.9.2',
'starlette>=0.20.4',
# https://pypi.org/project/fastapi/
'fastapi',
'uvicorn>=0.18.3',
'websockets',
'aiofiles',
'twine',
'wheel'
]
requires-python = ">=3.8"
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"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 = "justpy/__init__.py"
[project.urls]
Home = "https://justpy.io/"
Documentation = "https://justpy.io/"
Source = "https://github.com/justpy-org/justpy"
[project.optional-dependencies]
test = [
"aiohttp",
"altair", # example
"bokeh==3.0.3", # example
"green",
"matplotlib", #example
"pandas", # example
#pandas_datareader", #example
"plotly", # example
"pydeck", # example
"pydevd", # demo_browser
"pygments", # demo_browser
"seaborn", # example
#scipy", # example
"selenium>=4.12.0",
"testfixtures",
"vega_datasets", #example
"webdriver-manager>=4.0.0",
"pandas-datareader", # example
"python-multipart"
]
[tool.hatch.build.targets.wheel]
packages = [
"jpcore",
"justpy",
]