#!/usr/bin/env python # -*- coding: utf-8 -*- from distutils.core import setup from distutils.extension import Extension import os import subprocess setup( name = "python-lliurex-pool-tools", description = "A library to manipulate pools", version = "0.1", author = "Angel Berlanas Vicente", author_email = "angel.berlanas@gmail.com", url = "http://lliurex.net/", license = "GPLv3", platforms = ['posix'], package_dir = {'': 'src'}, py_modules = ['pooltools','pool','update'] )