mirror of
https://github.com/cheat/cheat.git
synced 2024-11-14 08:01:09 +01:00
Merge branch 'windows_setup' of github.com:chid/cheat into chid-windows_setup
* 'windows_setup' of github.com:chid/cheat: fix setup for Windows
This commit is contained in:
commit
74a91aa1d4
1 changed files with 10 additions and 5 deletions
15
setup.py
15
setup.py
|
@ -1,6 +1,15 @@
|
|||
from distutils.core import setup
|
||||
import os
|
||||
|
||||
data = [
|
||||
('/usr/share/zsh/site-functions', ['cheat/autocompletion/_cheat.zsh']),
|
||||
('/etc/bash_completion.d' , ['cheat/autocompletion/cheat.bash']),
|
||||
('/usr/share/fish/completions' , ['cheat/autocompletion/cheat.fish'])
|
||||
]
|
||||
|
||||
if os.name == 'nt':
|
||||
data = []
|
||||
|
||||
setup(
|
||||
name = 'cheat',
|
||||
version = '2.0.2',
|
||||
|
@ -21,11 +30,7 @@ setup(
|
|||
'cheat.cheatsheets': [f for f in os.listdir('cheat/cheatsheets') if '.' not in f]
|
||||
},
|
||||
scripts = ['bin/cheat'],
|
||||
data_files = [
|
||||
('/usr/share/zsh/site-functions', ['cheat/autocompletion/_cheat.zsh']),
|
||||
('/etc/bash_completion.d' , ['cheat/autocompletion/cheat.bash']),
|
||||
('/usr/share/fish/completions' , ['cheat/autocompletion/cheat.fish'])
|
||||
],
|
||||
data_files = data,
|
||||
install_requires = [
|
||||
'docopt >= 0.6.1',
|
||||
'pygments >= 1.6.0',
|
||||
|
|
Loading…
Reference in a new issue