-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
42 lines (39 loc) · 1.24 KB
/
setup.py
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
#!/usr/bin/env python
from setuptools import setup
from codecs import open
LONG_DESCRIPTION = open('README.md').read()
VERSION = open("version.txt").read().strip()
setup(
name='recent2',
version=VERSION,
description='Logs bash history to an sqlite database',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
# The project's main homepage.
url='https://github.com/dotslash/recent2',
license='MIT',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Environment :: Console',
'Topic :: System :: Logging',
'Topic :: System :: Shells',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
],
keywords='logging bash history database sqlite',
py_modules=["recent2"],
entry_points={
'console_scripts': [
'log-recent=recent2:log',
'recent-import-bash-history=recent2:import_bash_history_entry_point',
'recent=recent2:main',
],
},
python_requires='>=3',
install_requires=[
'tabulate',
],
)