-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.json
45 lines (45 loc) · 1.44 KB
/
setup.json
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
{
"classifiers": [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: Unix",
"Operating System :: POSIX",
"Programming Language :: Python :: 2 :: Only",
"Topic :: Utilities"
],
"entry_points": {
"console_scripts": [
"register_toil=register_apps.cli:register_toil",
"register_singularity=register_apps.cli:register_singularity",
"register_python=register_apps.cli:register_python"
]
},
"setup_requires": [
"pytest-runner==2.11.1"
],
"install_requires": [
"click==6.7",
"virtualenvwrapper==4.8.2"
],
"extras_require": {
"test": [
"coverage==4.4.2",
"pydocstyle==2.1.1",
"pytest==3.2.3",
"pytest-cov==2.5.1",
"pytest-env==0.6.2",
"pylint==1.8.1",
"tox==2.9.1"
]
},
"author": "Juan S. Medina",
"keywords": [],
"license": "BSD",
"name": "register_apps",
"test_suite": "tests",
"long_description": "📘 learn more on `GitHub <https://github.com/papaemmelab/register_apps>`_!",
"description": "👾 Register versioned toil container pipelines and other commands in singularity containers.",
"url": "https://github.com/papaemmelab/register_apps"
}