-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.cfg
79 lines (70 loc) · 1.79 KB
/
setup.cfg
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[aliases]
test = pytest
[tool:pytest]
addopts = --doctest-modules
norecursedirs = cloudknot/data
[metadata]
name = cloudknot
url = https://nrdg.github.io/cloudknot
download_url = https://github.com/nrdg/cloudknot
author = Adam Richie-Halford
author_email = [email protected]
maintainer = Adam Richie-Halford
maintainer_email = [email protected]
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Topic :: Scientific/Engineering
license = MIT
description = Cloudknot: a python library designed to run your existing python code on AWS Batch
long_description = file:README.md
long_description_content_type = text/markdown
platforms = OS Independent
[options]
setup_requires =
setuptools_scm
python_requires = >=3.6
install_requires =
boto3>=1.34.31
awscli>=1.32.31
botocore>=1.34.31
cloudpickle
docker>=3.0.0
pipreqs>=0.4.11
tenacity>=6.3.0
zip_safe = False
include_package_data = True
packages = find:
[options.package_data]
cloudknot = data/*, data/*/*, data/*/*/*, data/*/*/*/*, templates/*
[options.entry_points]
console_scripts =
cloudknot = cloudknot.cli:main
[options.extras_require]
dev =
black==23.7.0
coverage==5.3
flake8==3.8.3
numpydoc==1.1.0
moto[cloudformation]==4.1.5
pre-commit==3.3.3
pydocstyle==5.1.1
pytest-cov==2.10.1
pytest-xdist[psutil]==2.1.0
pytest==7.4.0
sphinx==5.0.0
maint =
rapidfuzz==0.12.2
[pydocstyle]
convention = numpy
match = (?!_version).*\.py
match-dir = cloudknot
[flake8]
max-line-length = 88
select = C,E,F,W,B,B950
ignore = E501,N802,N806,W503,E203
exclude = setup.py,build,dist,doc,examples,cloudknot/data