-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·37 lines (32 loc) · 1.18 KB
/
setup.py
File metadata and controls
executable file
·37 lines (32 loc) · 1.18 KB
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
import os
from setuptools import setup
from distutils.command.install import INSTALL_SCHEMES
for scheme in INSTALL_SCHEMES.values():
scheme['data'] = scheme['purelib']
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(name='piefuzz',
version='1.0.4',
description="Pie wrapper for junegunn's fuzzyfinder (fzf)",
long_description = read('README.md'),
keywords = 'pyfzf fzf fuzzyfinder fuzz find ctrl-p command-t',
author='timothy c eiechler',
author_email='timeyyy_da_man@hotmail.com',
license='MIT',
url='https://github.com/timeyyy/piefuzz',
install_requires=['plumbum'],
py_modules=['piefuzz'],
packages=['piefuzz'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Terminals',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
)