-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 826 Bytes
/
pyproject.toml
File metadata and controls
35 lines (29 loc) · 826 Bytes
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
[tool.poetry]
name = "emec-api"
version = "0.1.10"
description = "API Python para obter informações de instituições de ensino superior."
authors = ["Adilson Pavan <adilson.pavan@gmail.com>"]
repository = "https://github.com/pavanad/emec-api"
keywords = ["universidades", "cursos", "e-mec", "api", "brasil"]
license = "MIT License"
readme = "README.md"
[tool.poetry.scripts]
emec = "emec_api.__main__:main"
[tool.poetry.dependencies]
python = "^3.9"
beautifulsoup4 = "^4.10.0"
cleo = "^0.8.1"
pyfiglet = "^0.8.post1"
aiohttp = "^3.8.1"
pandas = "^1.4.2"
tqdm = "^4.66.1"
numpy = "1.26.4"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
flake8 = "^4.0.1"
bandit = "^1.7.3"
[tool.poetry.group.dev.dependencies]
twine = "^5.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"