Update README.md
[usbkill.git] / setup.py
blob1daa7a7f44562a33861a4908d718fb47c49d7a48
1 #!/usr/bin/env python
3 # _ _ _ _ _
4 # | | | | (_) | |
5 # _ _ ___| |__ | | _ _| | |
6 # | | | |/___) _ \| |_/ ) | | |
7 # | |_| |___ | |_) ) _ (| | | |
8 # |____/(___/|____/|_| \_)_|\_)_)
11 # Hephaestos <hephaestos@riseup.net> - 8764 EF6F D5C1 7838 8D10 E061 CF84 9CE5 42D0 B12B
12 # <https://github.com/hephaest0s/usbkill>
14 # This program is free software: you can redistribute it and/or modify
15 # it under the terms of the GNU General Public License as published by
16 # the Free Software Foundation, either version 3 of the License, or
17 # (at your option) any later version.
19 # This program is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 # GNU General Public License for more details.
24 # You should have received a copy of the GNU General Public License
25 # along with this program. If not, see <http://www.gnu.org/licenses/>.
28 from distutils.core import setup
29 from os import path
31 DIRNAME = path.dirname(path.realpath(__file__))
33 name = lambda x : path.join(DIRNAME, x)
35 setup(name='usbkill',
36 version='1.0-rc.4',
37 description='usbkill is an anti-forensic kill-switch that waits for a change on your USB ports and then immediately shuts down your computer.',
38 author='Hephaestos',
39 author_email='hephaestos@riseup.net',
40 license='GPLv3',
41 url='https://github.com/hephaest0s/usbkill',
43 packages=['usbkill'],
44 scripts=[name('install/usbkill')],
45 data_files=[ ('/etc/', [ name('install/usbkill.ini') ]) ]