-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (62 loc) · 1.49 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[tool]
[tool.poetry]
name = "xefab"
version = "0.1.13"
homepage = "https://github.com/jmosbacher/xefab"
description = "Top-level package for xefab."
authors = ["Yossi Mosbacher <[email protected]>"]
readme = "README.rst"
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
packages = [
{ include = "xefab" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = ">=3.8"
fabric = "^3.0.0"
rich = "^13.3.1"
appdirs = "^1.4.4"
pandas = "*"
gnupg = "^2.3.1"
pymongo = "*"
fsspec = "^2023.1.0"
makefun = "^1.15.0"
decopatch = "^1.4.10"
pydantic = "^1.10.4"
toml = "^0.10.2"
pyyaml = "^6.0"
[tool.poetry.dev-dependencies]
bumpversion = "*"
coverage = "*"
flake8 = "*"
isort = "*"
pylint = "*"
pytest-cov = "*"
invoke = "*"
black = "*"
pytest = "*"
sphinx = "*"
tox = "*"
yapf = "*"
sphinx-material = "*"
[tool.poetry.scripts]
xefab = 'xefab.main:program.run'
xf = 'xefab.main:program.run'
[tool.poetry.plugins."xefab.tasks"]
"midway" = "xefab.hosts.uchicago.midway"
"midway3" = "xefab.hosts.uchicago.midway3"
"dali" = "xefab.hosts.uchicago.dali"
"osg" = "xefab.hosts.osg"
[build-system]
requires = ["poetry-core>=1.0.8", "setuptools"]
build-backend = "poetry.core.masonry.api"
[tool.dephell.main]
versioning = "semver"
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}