-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.json
42 lines (42 loc) · 1.17 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
{
"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": [
"_alie=alie.cli:main"
]
},
"setup_requires": [
"pytest-runner==2.11.1"
],
"install_requires": [
"Click>=6.7"
],
"extras_require": {
"test": [
"coverage>=4.4.2",
"pydocstyle>=2.1.1",
"pytest-cov>=2.5.1",
"pytest-env==0.6.2",
"pytest-sugar>=0.9.1",
"pylint>=1.8.1",
"tox==2.9.1"
]
},
"author": "Juan S. Medina",
"keywords": [],
"license": "BSD",
"name": "alie",
"test_suite": "tests",
"long_description": "📘 learn more on `GitHub <https://github.com/jsmedmar/alie>`_!",
"description": "👟 register aliases and functions with ease.",
"url": "https://github.com/jsmedmar/alie"
}