-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (35 loc) · 1.28 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
# The Github repo for this project is:
# https://github.com/SooLee/Benchmark
# IMPORTANT: use Python 2.7 or above for this package
[tool.poetry]
name = "Benchmark-4dn"
version = "0.5.25"
description = """Benchmark functions that returns total space, mem, cpu given \
input size and parameters for the CWL workflows"""
authors = ["Soo Lee <[email protected]>"]
license = "MIT"
readme = 'README.md'
repository = "https://github.com/SooLee/Benchmark/"
keywords = ['benchmark', 'cwl', 'common workflow language',
'docker', 'tibanna', 'bioinformatics', '4dn']
classifiers = [
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
include = ["src/Benchmark/aws"]
packages = [
{ include="Benchmark", from="src" }
]
[tool.poetry.dependencies]
python = "^3.5"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"