-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (25 loc) · 868 Bytes
/
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
from setuptools import setup
setup(
name='jumpdir',
version='0.8.0',
description='A command line tool for quickly navigating your home directory.',
author='cgmcintyr',
author_email='[email protected]',
url='http://github.com/cgmcintyr/jumpdir',
zip_safe=False,
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Operating System :: POSIX',
],
keywords=['commandline', 'navigation', 'cd', 'directories'],
packages=['jumpdir', ],
scripts=['scripts/jumpdir', 'scripts/jumpdir-search'],
install_requires=['pychalk', 'scandir'],
extra_require={'dev': ['tox']},
)