-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (37 loc) · 1.39 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
[tool.poetry]
name = "qwatch"
version = "0.2.0"
license = "MIT"
description = """The qwatch package was developed with pbs_version = 14.1.0 using the Mississippi Center for
Computational Research (MCSR). Its primary function is to parse qstat -f data over time. The data and plots
produced allow the user to make smarter decision regarding resource allocation for downstream batch jobs."""
authors = ["Rob Gilmore <rgilmore@umc.edu>"]
readme = "README.md"
repository = "https://github.com/bioinformatics-collaborative/mcsr-tools/tree/qwatch_branch/qwatch"
keywords = ["qsub", "SGE", "PBS", "qstat", "watch"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Topic :: Scientific/Engineering",
"Topic :: System :: Clustering",
"Topic :: System :: Distributed Computing",
"Topic :: System :: Monitoring"
]
[tool.poetry.dependencies]
python = "^3.6"
click = "^6.7"
pandas = "^0.22.0"
pyaml = "^17.12"
[tool.poetry.dev-dependencies]
pytest = "^3.5"
[tool.poetry.scripts]
qwatch = 'qwatch.cli:qwatch'