-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (40 loc) · 1.3 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
[tool.poetry]
name = "formee"
version = "0.1.6"
description = "Formee is a tool that provides an easy way to create, edit and manage all of your forms from the command line. It uses a powerful GraphQL API and strives to make the process of working with forms as easy and simple as possible."
authors = ["Arpan Pandey <[email protected]>"]
license = "MIT"
repository = "https://github.com/Arpan-206/formee"
readme = "README.md"
include = ["docs/docs_assets/images/logo.svg"]
[tool.poetry.dependencies]
python = "^3.8"
python-dotenv = "^0.20.0"
PyInquirer = "^1.0.3"
pyfiglet = "^0.8.post1"
rich = "^12.0.1"
requests = "^2.27.1"
PyYAML = "^6.0"
gql = "^3.1.0"
aiohttp = "^3.8.1"
argon2-cffi = "^21.3.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
mkdocs = "^1.3.0"
mkdocs-material = "^8.2.8"
mkdocs-minify-plugin = "^0.5.0"
mkdocs-git-revision-date-localized-plugin = "^1.0.0"
mkdocs-git-authors-plugin = "^0.6.4"
mkdocs-table-reader-plugin = "^1.0.0"
mkdocs-img2fig-plugin = "^0.9.3"
mknotebooks = "^0.7.1"
mkdocs-awesome-pages-plugin = "^2.7.0"
mkdocs-enumerate-headings-plugin = "^0.5.0"
mkdocs-print-site-plugin = "^2.3.2"
mkgendocs = "^0.9.0"
mkdocstrings = "^0.18.1"
[tool.poetry.scripts]
formee = 'formee.__main__:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"