]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/blob - zfec/setup.py
setup: bundle the latest zetuptoolz as unpacked source egg and change setup.py to...
[tahoe-lafs/zfec.git] / zfec / setup.py
1 #!/usr/bin/env python
2
3 # zfec -- fast forward error correction library with Python interface
4 #
5 # Copyright (C) 2007-2010 Allmydata, Inc.
6 # Author: Zooko Wilcox-O'Hearn
7 #
8 # This file is part of zfec.
9 #
10 # See README.txt for licensing information.
11
12 import glob, os, re, sys
13
14 egg = os.path.realpath(glob.glob('setuptools-*.egg')[0])
15 sys.path.insert(0, egg)
16 import setuptools; setuptools.bootstrap_install_from = egg
17
18 from setuptools import Extension, find_packages, setup
19
20 if "--debug" in sys.argv:
21     DEBUGMODE=True
22     sys.argv.remove("--debug")
23 else:
24     DEBUGMODE=False
25
26 extra_compile_args=[]
27 extra_link_args=[]
28
29 extra_compile_args.append("-std=c99")
30
31 define_macros=[]
32 undef_macros=[]
33
34 for arg in sys.argv:
35     if arg.startswith("--stride="):
36         stride = int(arg[len("--stride="):])
37         define_macros.append(('STRIDE', stride))
38         sys.argv.remove(arg)
39         break
40
41 if DEBUGMODE:
42     extra_compile_args.append("-O0")
43     extra_compile_args.append("-g")
44     extra_compile_args.append("-Wall")
45     extra_link_args.append("-g")
46     undef_macros.append('NDEBUG')
47
48 trove_classifiers=[
49     "Development Status :: 5 - Production/Stable",
50     "Environment :: Console",
51     "License :: OSI Approved :: GNU General Public License (GPL)",
52     "License :: DFSG approved",
53     "License :: Other/Proprietary License",
54     "Intended Audience :: Developers",
55     "Intended Audience :: End Users/Desktop",
56     "Intended Audience :: System Administrators",
57     "Operating System :: Microsoft",
58     "Operating System :: Microsoft :: Windows",
59     "Operating System :: Unix",
60     "Operating System :: POSIX :: Linux",
61     "Operating System :: POSIX",
62     "Operating System :: MacOS :: MacOS X",
63     "Operating System :: Microsoft :: Windows :: Windows NT/2000",
64     "Operating System :: OS Independent",
65     "Natural Language :: English",
66     "Programming Language :: C",
67     "Programming Language :: Python", 
68     "Programming Language :: Python :: 2",
69     "Programming Language :: Python :: 2.4",
70     "Programming Language :: Python :: 2.5",
71     "Topic :: Utilities",
72     "Topic :: System :: Systems Administration",
73     "Topic :: System :: Filesystems",
74     "Topic :: System :: Distributed Computing",
75     "Topic :: Software Development :: Libraries",
76     "Topic :: Communications :: Usenet News",
77     "Topic :: System :: Archiving :: Backup",
78     "Topic :: System :: Archiving :: Mirroring",
79     "Topic :: System :: Archiving",
80     ]
81
82 PKG = "zfec"
83 VERSIONFILE = os.path.join(PKG, "_version.py")
84 verstr = "unknown"
85 try:
86     verstrline = open(VERSIONFILE, "rt").read()
87 except EnvironmentError:
88     pass # Okay, there is no version file.
89 else:
90     VSRE = r"^verstr = ['\"]([^'\"]*)['\"]"
91     mo = re.search(VSRE, verstrline, re.M)
92     if mo:
93         verstr = mo.group(1)
94     else:
95         print "unable to find version in %s" % (VERSIONFILE,)
96         raise RuntimeError("if %s.py exists, it is required to be well-formed" % (VERSIONFILE,))
97
98 setup_requires = []
99
100 # The darcsver command from the darcsver plugin is needed to initialize the
101 # distribution's .version attribute correctly. (It does this either by
102 # examining darcs history, or if that fails by reading the
103 # zfec/_version.py file). darcsver will also write a new version
104 # stamp in zfec/_version.py, with a version number derived from
105 # darcs history. Note that the setup.cfg file has an "[aliases]" section
106 # which enumerates commands that you might run and specifies that it will run
107 # darcsver before each one. If you add different commands (or if I forgot
108 # some that are already in use), you may need to add it to setup.cfg and
109 # configure it to run darcsver before your command, if you want the version
110 # number to be correct when that command runs.
111 # http://pypi.python.org/pypi/darcsver
112 setup_requires.append('darcsver >= 1.2.0')
113
114 # setuptools_darcs is required to produce complete distributions (such as with
115 # "sdist" or "bdist_egg"), unless there is a zfec.egg-info/SOURCE.txt file
116 # present which contains a complete list of files that should be included.
117 # http://pypi.python.org/pypi/setuptools_darcs
118 setup_requires.append('setuptools_darcs >= 1.1.0')
119
120 # stdeb is required to build Debian dsc files.
121 if "sdist_dsc" in sys.argv:
122     setup_requires.append('stdeb')
123
124 data_fnames=[ 'COPYING.GPL', 'changelog', 'COPYING.TGPPL.html', 'TODO', 'README.txt' ]
125
126 # In case we are building for a .deb with stdeb's sdist_dsc command, we put the
127 # docs in "share/doc/$PKG".
128 doc_loc = "share/doc/" + PKG
129 data_files = [(doc_loc, data_fnames)]
130
131 def _setup(test_suite):
132     setup(name=PKG,
133           version=verstr,
134           description='a fast erasure codec which can be used with the command-line, C, Python, or Haskell',
135           long_description='Fast, portable, programmable erasure coding a.k.a. "forward error correction": the generation of redundant blocks of information such that if some blocks are lost then the original data can be recovered from the remaining blocks.  The zfec package includes command-line tools, C API, Python API, and Haskell API',
136           author='Zooko O\'Whielacronx',
137           author_email='zooko@zooko.com',
138           url='http://allmydata.org/trac/'+PKG,
139           license='GNU GPL',
140           install_requires=["argparse >= 0.8", "pyutil >= 1.3.19"],
141           tests_require=["pyutil >= 1.3.19"],
142           packages=find_packages(),
143           include_package_data=True,
144           data_files=data_files,
145           setup_requires=setup_requires,
146           classifiers=trove_classifiers,
147           entry_points = { 'console_scripts': [ 'zfec = %s.cmdline_zfec:main' % PKG, 'zunfec = %s.cmdline_zunfec:main' % PKG ] },
148           ext_modules=[Extension(PKG+'._fec', [PKG+'/fec.c', PKG+'/_fecmodule.c',], extra_link_args=extra_link_args, extra_compile_args=extra_compile_args, undef_macros=undef_macros, define_macros=define_macros),],
149           test_suite=test_suite,
150           zip_safe=False, # I prefer unzipped for easier access.
151           )
152
153 test_suite_name=PKG+".test"
154 try:
155     _setup(test_suite=test_suite_name)
156 except Exception, le:
157     # to work around a bug in Elisa v0.3.5
158     # https://bugs.launchpad.net/elisa/+bug/263697
159     if "test_suite must be a list" in str(le):
160         _setup(test_suite=[test_suite_name])
161     else:
162         raise