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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
#!/usr/bin/env python3
# .+
#
# .context : portio python extension
# .title : distutils setup
# .kind : python source
# .author : Fabrizio Pollastri <mxgbot@gmail.com>
# .site : Torino - Italy
# .creation : 16-Feb-2006
# .copyright : (c) 2006-2024 Fabrizio Pollastri
# (c) 2012 Stjepan Henc <shenc@gmail.com> python 3 porting.
# .license : GNU General Public License (see .copying below)
#
# .copying
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# .-
from setuptools import setup, Extension
import os
import os.path
import re
import sys
classifiers = """\
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License (GPL)
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: System :: Hardware
Topic :: Software Development :: Libraries :: Python Modules
Operating System :: POSIX :: Linux
"""
# check for proper python version
if sys.version < '3.0':
print('\nportio 0.6.2 requires python >= 3.0 , found python', \
sys.version.split()[0], ', exiting...')
sys.exit()
readme = open('README.rst').read() # read in documentation file
readme = readme.replace('**','') # remove restructuredtext markup
# split documentation by text titles and put each title and its text body
# into a dictionary: title is the key, text body is the value.
readme_split = re.split('\n(.*?)\n====+?\n\n',readme)
i = 3
readme_db = {}
while i < len(readme_split):
readme_db[readme_split[i]] = readme_split[i + 1]
i += 2
main_title = readme_split[1] + '\n' # main title goes alone
# if not present, generate portio.c source file.
# Replace template tag "DOCUMENTATION" into C source with documentation
# text read from README. Add backslash iand new line at end of each line
# (C multiline string syntax).
if not os.path.exists('portio.c'):
doc = main_title + '\n' + readme_db["Module reference"]
doc = doc.replace('\n','\\n\\\n')
source = open('portio.c.in').read()
source = source % {'DOCUMENTATION':doc}
open('portio.c','w').write(source)
# if not present, generate toggle.py source file extracting it from README
if not os.path.exists('toggle.py'):
source = readme_db["Usage example"]
source = source.split('::')[1]
print(source)
module = Extension(
'portio',
define_macros = [('MAJOR_VERSION', '0'),('MINOR_VERSION', '5')],
libraries = [],
sources = ['portio.c'])
setup (
name = 'portio',
author = 'Fabrizio Pollastri',
author_email = 'mxgbot@gmail.com',
url = 'http://portio.inrim.it',
license = 'http://www.gnu.org/licenses/gpl.txt',
platforms = ['Linux'],
description = main_title,
classifiers = [line for line in filter(None, classifiers.split("\n"))],
long_description = readme_db["Module reference"],
ext_modules = [module])
# cleanup
try:
os.remove('MANIFEST')
except:
pass
#### END
|