-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 806 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 806 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
[tool.poetry]
name = "pjisp_diff"
version = "0.1.4"
description = "PJISP diff check"
authors = ["Jelena Dokic <jrubics@hacke.rs>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/JRubics/pjisp-diff/"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Topic :: Education",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^2.7"
click = "^7.1.2"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
pjisp_diff = 'pjisp_diff:diff'