-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·35 lines (26 loc) · 937 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
27
28
29
"""
Setup file
author: HashCode55
data : 09/12/2017
"""
import setuptools
from sniper.version import Version
setuptools.setup(name='pysniper',
version=Version('1.0.0').number,
description='Sniper is a clould enabled, terminal based easy to use snippet manager.',
long_description=open('README.md').read().strip(),
author='HashCode55',
author_email='[email protected]',
py_modules=['sniper'],
install_requires=[
'Click',
'clipboard',
'fuzzywuzzy',
'python-Levenshtein'
],
entry_points='''
[console_scripts]
sniper = sniper.main:run
''',
license='MIT License',
zip_safe=False)