-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
42 lines (37 loc) · 948 Bytes
/
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
[tool.poetry]
name = "jill"
version = "0.11.5"
description = "JILL -- Julia Installer for Linux (MacOS, Windows and FreeBSD) -- Light"
authors = ["johnnychen94 <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/johnnychen94/jill.py"
keywords = ["julia", "installer"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
packages = [
{ include = "jill" },
]
exclude = [
"jill/tests"
]
[tool.poetry.dependencies]
python = "^3.7"
wget = "^3.2"
requests = "^2.28.2"
fire = "^0.5.0"
semantic-version = "^2.10.0"
python-gnupg = "^0.5.0"
requests-futures = "^1.0.0"
jsonschema = "^4.17.3"
[tool.poetry.group.dev.dependencies]
mypy = "^1.1.1"
yapf = ">=0.32,<0.41"
[tool.poetry.scripts]
jill = 'jill.__main__:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"