#!/usr/bin/env python
# -*- coding: utf-8 -*-

from distutils.core import setup
import os

datafiles = []


setup(name='wifi-ltsp',
	version='0.1',
	description='Archivos de configuración de hostapd con wifi',
	long_description = """Really long text here.""",
	author = 'José L. Redrejo Rodríguez, Francisco Mora Sánchez y Elisa Aparicio Pérez',
	author_email = 'jredrejo@debian.org',
	license = "GNU GPLv3",
    packages=['parsehostapd'],
	package_dir={'parsehostapd': 'parsehostapd/'},
	url = 'http://desarrollo.educarex.es/linex/projects/servidoressecundaria/repository/show/wifi-ltsp',
	# Those are going to be installed on /usr/bin/
	scripts=['configura_hostapd.py'],

	data_files=datafiles 
    )

