-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.json
More file actions
50 lines (50 loc) · 1.33 KB
/
setup.json
File metadata and controls
50 lines (50 loc) · 1.33 KB
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
{
"name": "reentry",
"version": "1.3.3",
"author": "Rico Haeuselmann",
"license": "MIT License",
"url": "https://github.com/dropd/reentry",
"description": "A plugin manager based on setuptools entry points mechanism",
"entry_points": {
"distutils.setup_keywords": [
"reentry_register = reentry.hooks:register_dist"
],
"console_scripts": [
"reentry = reentry.cli:reentry"
],
"test_entry_points": [
"test = reentry.cli:reentry"
]
},
"classifiers": [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Intended Audience :: Developers",
"Topic :: Software Development"
],
"install_requires": [
"setuptools >= 36.2",
"click",
"six",
"pathlib2; python_version < '3.5'"
],
"extras_require": {
"tests": [
"pytest",
"coverage",
"pytest-cov",
"wheel",
"tox"
],
"pre-commit": [
"pre-commit~=2.2",
"pylint~=2.6.0",
"flake8",
"tox",
"packaging"
]
}
}