-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 850 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 850 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
from setuptools import setup
setup(
name="shellstats",
version="0.1",
description="Show the most used shell commands.",
url="https://github.com/rahiel/shellstats",
author="Rahiel Kasim",
author_email="rahielkasim@gmail.com",
license="MIT",
py_modules=["shellstats"],
install_requires=["click"],
entry_points={
"console_scripts": ["shellstats = shellstats:main"]
},
extras_require = {
"Plotting": ["matplotlib"]
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Topic :: System :: Shells",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3"
]
)