-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
49 lines (46 loc) · 1.44 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/share/python2
# -*- coding: utf-8 -*-
#
# wpa_config - a config manager for wpa_supplicant
#
# Author: slowpoke <[email protected]>
#
# This program is Free Software under the non-terms
# of the Anti-License. Do whatever the fuck you want.
#
# Github: https://github.com/proxypoke/wpa_config
from distutils.core import setup
version = "0.2"
setup(
name='wpa_config',
version=version,
description='a simple config manager for wpa_supplicant',
author='slowpoke',
author_email='[email protected]',
url='https://github.com/proxypoke/wpa_config',
download_url=''.join(['https://github.com/proxypoke/wpa_config/archive/',
'{}.tar.gz'.format(version)]),
scripts=[
'wpa_config',
],
data_files=[
('/etc/wpa_config', [
'files/wpa_supplicant.conf.head',
'files/wpa_supplicant.conf.tail',
]),
('/etc/wpa_config/networks.d', []),
('/usr/share/doc/wpa_config', ['README.txt']),
('/usr/share/man/man8', ['man/wpa_config.8.bz2']),
],
classifiers=[
'Environment :: Console',
'Development Status :: 4 - Beta',
'Intended Audience :: System Administrators',
'License :: Public Domain',
'Operating System :: Unix',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Networking',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
]
)