-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 891 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 891 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
33
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "channelfinder"
version = "3.2.0"
authors = [
{ name="Kunal Shroff", email="shroffk@bnl.gov" },
]
description = "Python ChannelFinder Client Lib"
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"requests>=2.15.0",
"simplejson>=3.10.0",
"urllib3>=1.22"
]
[project.optional-dependencies]
test = ["pytest", "testcontainers>=4"]
[project.urls]
Homepage = "https://github.com/ChannelFinderService/pyCFClient"
Issues = "https://github.com/ChannelFinderService/pyCFClient/issues"
[project.scripts]
cf-update-ioc = "channelfinder.cfUpdate.CFUpdateIOC:main"
cf-monitor-test = "channelfinder.cfMonitorTest:main"