-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
40 lines (37 loc) · 1.02 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "odevio"
version = "1.2.2"
authors = [
{name="Odevio", email="[email protected]"}
]
description = "CLI to interact with Odevio, the easy way to setup, build & deploy flutter apps for iOS on Linux, Windows and MacOS"
readme = "Readme.rst"
license = {file="LICENSE"}
requires-python = ">=3.7.0"
keywords = ["Flutter", "iOS"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Environment :: Console",
"Natural Language :: English",
]
dependencies = [
"click==8.0.4",
"rich==11.2.0",
"requests==2.27.1",
"pyjwt==2.4.0",
"questionary==1.10.0",
"paramiko==3.0.0",
"qrcode==7.4.2",
"sseclient-py==1.8.0",
]
[project.urls]
"Homepage" = "https://www.odevio.com"
"Source" = "https://github.com/Odevio/Odevio-CLI"
[project.scripts]
odevio="odevio.__main__:odevio"