Changeset 3243 for lliurex-up/trunk/fuentes/setup.py
- Timestamp:
- Jan 11, 2017, 4:54:09 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lliurex-up/trunk/fuentes/setup.py
r3224 r3243 1 # -*- coding: utf-8 -*- 2 from distutils.core import setup 3 from distutils.extension import Extension 4 import os 5 import subprocess 1 #!/usr/bin/python 6 2 3 # Copyright (C) 2006 James Westby <jw+debian@jameswestby.net> 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 7 18 8 setup( name = "python-lliurex-up", 9 version = "0.1", 10 author = "Raul Rodrigo Segura", 11 author_email = "raurodse@gmail.com", 12 url = "http://lliurex.net/", 13 package_dir = {'': 'python-lliurex-up'}, 14 packages = ['lliurex'], 19 from setuptools import setup 20 21 setup(name='python-lliurexup', 22 version='0.1', 23 description='lliurex-up library', 24 url='http://lliurex.net', 25 package_dir={'': 'python-lliurex-up'}, 26 packages=['lliurex'], 27 maintainer='Raul Rodrigo Segura', 28 maintainer_email='raurodse@gmail.com', 15 29 ) 30
Note: See TracChangeset
for help on using the changeset viewer.