-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (40 loc) · 1.11 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 = "comexdown"
version = "1.4.1"
description = "A commandline utility to download Brazil's foreign trade data"
authors = ["Daniel Komesu <danielkomesu@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/dankkom/comexdown"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Utilities",
]
packages = [
{include = "comexdown"}
]
[tool.poetry.dependencies]
python = ">=3.10"
[tool.poetry.group.dev.dependencies]
coveralls = "*"
pytest = "*"
pytest-cov = "*"
pylint = "*"
autopep8 = "*"
isort = "*"
flake8 = "*"
wheel = "*"
[tool.poetry.scripts]
comexdown = "comexdown.cli:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"