-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.json
51 lines (51 loc) · 1.3 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
46
47
48
49
50
51
{
"classifiers": [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: Unix",
"Operating System :: POSIX",
"Topic :: Utilities"
],
"entry_points": {
"console_scripts": ["isabl=isabl_cli.cli:main"]
},
"setup_requires": ["pytest-runner>=2.11.1"],
"install_requires": [
"analytics-python>=1.4.0",
"cached_property>=1.4.2",
"Click>=7.0.0",
"munch>=2.3.2",
"python-slugify>=1.1.2",
"pytz>=2018.4",
"PyYAML>=5.3",
"requests>=2.19.1",
"six>=1.11.0",
"packaging>=21.0"
],
"extras_require": {
"test": [
"black>=18.9b0",
"coverage>=4.4.2",
"factory-boy>=2.11.1 ",
"ipdb>=0.11",
"pluggy>=0.7.1",
"pydocstyle>=2.1.1",
"pylint>=1.8.1",
"pytest>=4.5",
"pytest-cov>=2.5.1",
"pytest-env>=0.6.2",
"pytest-sugar>=0.9.1",
"tox>=2.9.1"
]
},
"author": "Juan S. Medina",
"keywords": [],
"license": "BSD",
"name": "isabl-cli",
"test_suite": "tests",
"long_description": "📘 learn more on `GitHub <https://github.com/papaemmelab/isabl_cli>`_!",
"description": "isabl_cli command line client.",
"url": "https://github.com/papaemmelab/isabl_cli"
}