-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (52 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
54
55
56
57
58
[project]
name = "pyrain"
description = "Communication network linking research infrastructure using TCP/IP json messages"
readme = {file = "README.md", content-type = "text/markdown"}
authors = [
{name = "Calum Lonie", email = "callon-2@student.ltu.se"},
{name = "Daniel Kastinen", email = "daniel.kastinen@irf.se"},
]
maintainers = [
{name = "Daniel Kastinen", email = "daniel.kastinen@irf.se"},
]
license = {file = "LICENSE"}
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.5"
dependencies = [
"pyzmq",
"jsonschema",
]
dynamic = ["version"]
[project.scripts]
rain-client = "rain.cli:client_cli"
rain-register = "rain.cli:register_cli"
rain-server = "rain.cli:server_cli"
rain-trigger = "rain.cli:trigger_cli"
[tool.setuptools.dynamic]
version = {attr = "rain.version.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[project.optional-dependencies]
develop = [
"pytest",
"flake8",
"wheel",
"build",
"twine",
"pre-commit",
"black",
"mkdocs-material",
"mkdocstrings[python]",
]
[project.urls]
Documentation = "https://danielk.developer.irf.se/rain/"
Repository = "https://github.com/danielk333/rain"
Homepage = "https://github.com/danielk333/rain"
Issues = "https://github.com/danielk333/rain/issues"
[tool.black]
line-length = 100
target_version = ['py35', 'py36', 'py37', 'py38', 'py39', 'py310']