-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·38 lines (37 loc) · 874 Bytes
/
setup.py
File metadata and controls
executable file
·38 lines (37 loc) · 874 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
34
35
36
37
38
#!/usr/bin/env python3
from setuptools import find_packages, setup
setup(
packages=find_packages(exclude="test"),
install_requires=[
"pyparsing",
"jinja2",
"spacy~=3.0",
"miniwdl",
"wordsegment",
"inflection",
"illusional.wdlgen==0.3.0",
"ruamel.yaml==0.16.5",
"click",
"cwltool",
"cwl-utils>=0.4",
"regex",
"num2words",
"word2number",
"psutil",
"deprecated",
"attrs",
"janis-pipelines.core>=0.11.2",
],
python_requires=">=3.6",
entry_points={"console_scripts": ["aclimatise = aclimatise.cli:main"]},
extras_require={
"dev": [
"pytest",
"pre-commit",
"Sphinx",
"sphinx-click",
"pytest-timeout",
"docker",
],
},
)