-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (50 loc) · 1.29 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
[tool.poetry]
name = "stellapy"
version = "0.4.0"
description = "Streamline your web dev experience with stella - reload for the terminal as well as browser."
authors = ["Shravan Asati <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/shravanasati/stellapy"
repository = "https://github.com/shravanasati/stellapy"
documentation = "https://github.com/shravanasati/stellapy#readme"
keywords = [
"web dev",
"development",
"website",
"python",
"cli",
"stella",
"reloader",
"walker",
"executor",
"helium",
"selenium",
"automation",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
include = ["schema.json"]
[tool.poetry.scripts]
stella = "stellapy.stella:main"
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.7"
rich = "^13.7.0"
ruamel-yaml = "^0.18.5"
gitignorefile = "^1.1.2"
jsonschema = "^4.20.0"
watchdog = "^4.0.0"
selenium = "^4.21.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"