-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (45 loc) · 1.3 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
[tool.poetry]
name = "pyfgaws"
version = "0.2.4-dev"
description = "Tools and python libraries for working with AWS."
authors = ["Nils Homer", "Tim Fennell"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/fulcrumgenomics/pyfgaws"
repository = "https://github.com/fulcrumgenomics/pyfgaws"
keywords = ["aws", "bioinformatics"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.9"
attrs = "^19.3.0"
defopt = "^6.0"
boto3 = "^1.13.18"
botocore = "^1.13.18"
boto3-stubs = {extras = ["batch", "logs"], version = "^1.13.19"}
namegenerator = "^1.0.6"
fgpyo = "^0.0.6"
[tool.poetry.dev-dependencies]
pytest = "^5.4.2"
mypy = ">=1.7.0"
flake8 = "^3.8.1"
black = "^23.1.0"
pytest-cov = ">=2.8.1"
[tool.poetry.scripts]
fgaws-tools = "pyfgaws.__main__:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"