-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
57 lines (51 loc) · 1.51 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import os
import sys
from distutils.core import setup
import rash
PY3 = (sys.version_info[0] >= 3)
install_requires = [
'argparse',
]
if not PY3:
install_requires.extend([
'parsedatetime',
'watchdog',
])
setup(
name='rash',
version=rash.__version__,
packages=['rash', 'rash.utils',
'rash.tests', 'rash.utils.tests', 'rash.functional_tests'],
package_data={
# See also ./MANIFEST.in
'rash': [
'schema.sql',
os.path.join('ext', '*sh'),
],
},
author=rash.__author__,
author_email='[email protected]',
url='https://github.com/tkf/rash',
license=rash.__license__,
description='Rash Advances Shell History',
long_description=rash.__doc__,
keywords='history, shell, search',
classifiers=[
"Development Status :: 3 - Alpha",
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Unix Shell",
"Topic :: System :: Shells",
"Topic :: System :: Logging"
# see: http://pypi.python.org/pypi?%3Aaction=list_classifiers
],
install_requires=install_requires,
entry_points={
'console_scripts': ['rash = rash.cli:main'],
},
)