-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (48 loc) · 1.47 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
[tool.poetry]
name = "dapodik-webservice"
version = "3.1.0"
description = "SDK Python Web Service aplikasi Dapodik"
authors = ["hexatester <[email protected]>"]
license = "GPLv3"
readme = "README.md"
homepage = "https://dapodix.github.io/dapodik-webservice/"
repository = "https://github.com/dapodix/dapodik-webservice"
include = [
"LICENSE",
"README.md",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = "^3.6.1"
requests = "^2.25.1"
attrs = "^20.3.0"
openpyxl = {version = "^3.0.5", optional = true}
click = {version = "^7.1.2", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^5.2"
mypy = "^0.790"
black = "^20.8b1"
flake8 = "^3.8.4"
rope = "^0.18.0"
pre-commit = "^2.9.3"
pytest-cov = "^2.10.1"
python-dotenv = "^0.15.0"
[tool.poetry.extras]
excel = ["openpyxl", "click"]
[tool.poetry.scripts]
dapodik = "dapodik_webservice.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"