-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 698 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# !/usr/bin/env python
from setuptools import setup
setup(name='quickfind',
version="0.3.3.1",
description='Fuzzy find for the terminal',
url="https://github.com/Refefer/quickfind",
packages=['quickfind', 'quickfind/source'],
license="LICENSE",
scripts=['qf'],
author='Andrew Stanton',
author_email='Andrew Stanton',
extras_require={
"ctags": 'python-ctags',
"fsnix": 'fsnix==0.2'
},
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Operating System :: OS Independent"
])