2 # zfec -- fast forward error correction library with Python interface
4 # copyright © 2007-2013 Zooko Wilcox-O'Hearn
6 # This file is part of zfec.
8 # See README.rst for licensing information.
10 import glob, os, re, sys
12 egg = os.path.realpath(glob.glob('setuptools-*.egg')[0])
13 sys.path.insert(0, egg)
14 import setuptools; setuptools.bootstrap_install_from = egg
16 from setuptools import Extension, find_packages, setup
18 if "--debug" in sys.argv:
20 sys.argv.remove("--debug")
27 extra_compile_args.append("-std=c99")
33 if arg.startswith("--stride="):
34 stride = int(arg[len("--stride="):])
35 define_macros.append(('STRIDE', stride))
40 extra_compile_args.append("-O0")
41 extra_compile_args.append("-g")
42 extra_compile_args.append("-Wall")
43 extra_link_args.append("-g")
44 undef_macros.append('NDEBUG')
47 "Development Status :: 5 - Production/Stable",
48 "Environment :: Console",
49 "License :: OSI Approved :: GNU General Public License (GPL)", # See README.rst for alternative licensing.
50 "License :: DFSG approved",
51 "License :: Other/Proprietary License",
52 "Intended Audience :: Developers",
53 "Intended Audience :: End Users/Desktop",
54 "Intended Audience :: System Administrators",
55 "Operating System :: Microsoft",
56 "Operating System :: Microsoft :: Windows",
57 "Operating System :: Unix",
58 "Operating System :: POSIX :: Linux",
59 "Operating System :: POSIX",
60 "Operating System :: MacOS :: MacOS X",
61 "Operating System :: Microsoft :: Windows :: Windows NT/2000",
62 "Operating System :: OS Independent",
63 "Natural Language :: English",
64 "Programming Language :: C",
65 "Programming Language :: Python",
66 "Programming Language :: Python :: 2",
67 "Programming Language :: Python :: 2.4",
68 "Programming Language :: Python :: 2.5",
69 "Programming Language :: Python :: 2.6",
70 "Programming Language :: Python :: 2.7",
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",
83 VERSIONFILE = os.path.join(PKG, "_version.py")
86 verstrline = open(VERSIONFILE, "rt").read()
87 except EnvironmentError:
88 pass # Okay, there is no version file.
90 VSRE = r"^verstr = ['\"]([^'\"]*)['\"]"
91 mo = re.search(VSRE, verstrline, re.M)
95 print "unable to find version in %s" % (VERSIONFILE,)
96 raise RuntimeError("if %s.py exists, it is required to be well-formed" % (VERSIONFILE,))
101 tests_require.append("pyutil >= 1.3.19")
103 # darcsver is needed only if you want "./setup.py darcsver" to write a new
104 # version stamp in pyutil/_version.py, with a version number derived from
105 # darcs history. http://pypi.python.org/pypi/darcsver
106 if 'darcsver' in sys.argv[1:]:
107 setup_requires.append('darcsver >= 1.0.0')
109 # setuptools_darcs is required to produce complete distributions (such
110 # as with "sdist" or "bdist_egg"), unless there is a
111 # zfec.egg-info/SOURCE.txt file present which contains a complete
112 # list of files that should be included.
113 # http://pypi.python.org/pypi/setuptools_darcs
115 # However, requiring it runs afoul of a bug in Distribute, which was
116 # shipped in Ubuntu Lucid, so for now you have to manually install it
117 # before building sdists or eggs:
118 # http://bitbucket.org/tarek/distribute/issue/55/revision-control-plugin-automatically-installed-as-a-build-dependency-is-not-present-when-another-build-dependency-is-being
120 setup_requires.append('setuptools_darcs >= 1.1.0')
123 # setuptools_trial is needed if you want "./setup.py trial" or
124 # "./setup.py test" to execute the tests.
125 # http://pypi.python.org/pypi/setuptools_trial
126 if 'trial' in sys.argv[1:]:
127 setup_requires.extend(['setuptools_trial >= 0.5'])
129 # trialcoverage is required if you want the "trial" unit test runner to have a
130 # "--reporter=bwverbose-coverage" option which produces code-coverage results.
131 if "--reporter=bwverbose-coverage" in sys.argv:
132 tests_require.append('trialcoverage >= 0.3.3')
133 tests_require.append('twisted >= 2.4.0')
134 tests_require.append('setuptools_trial >= 0.5')
136 # stdeb is required to build Debian dsc files.
137 if "sdist_dsc" in sys.argv:
138 setup_requires.append('stdeb')
140 data_fnames=[ 'COPYING.GPL', 'changelog', 'COPYING.TGPPL.rst', 'TODO', 'README.rst' ]
142 # In case we are building for a .deb with stdeb's sdist_dsc command, we put the
143 # docs in "share/doc/$PKG".
144 doc_loc = "share/doc/" + PKG
145 data_files = [(doc_loc, data_fnames)]
147 readmetext = open('README.rst').read()
148 if readmetext[:3] == '\xef\xbb\xbf':
150 readmetext = readmetext[3:]
153 readmetext = readmetext.decode('utf-8')
154 except UnicodeDecodeError:
157 install_requires=["pyutil >= 1.3.19"]
159 # argparse comes built into Python >= 2.7, and is provided by the "argparse"
160 # distribution for earlier versions of Python.
163 argparse # hush pyflakes
165 install_requires.append("argparse >= 0.8")
167 # distutils in Python 2.4 has a bug in that it tries to encode the long
168 # description into ascii. We detect the resulting exception and try again
169 # after squashing the long description (lossily) into ascii.
171 def _setup(longdescription):
174 description='a fast erasure codec which can be used with the command-line, C, Python, or Haskell',
175 long_description=longdescription,
176 author='Zooko O\'Whielacronx',
177 author_email='zooko@zooko.com',
178 url='https://tahoe-lafs.org/trac/'+PKG,
179 license='GNU GPL', # See README.rst for alternative licensing.
180 install_requires=install_requires,
181 tests_require=tests_require,
182 packages=find_packages(),
183 include_package_data=True,
184 data_files=data_files,
185 setup_requires=setup_requires,
186 classifiers=trove_classifiers,
187 entry_points = { 'console_scripts': [ 'zfec = %s.cmdline_zfec:main' % PKG, 'zunfec = %s.cmdline_zunfec:main' % PKG ] },
188 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),],
189 test_suite=PKG+".test",
190 zip_safe=False, # I prefer unzipped for easier access.
192 'ed25519=ba95497adf4db8e17f688c0979003c48c76897d60e2d2193f938b9ab62115f59':[],
198 except UnicodeEncodeError:
199 _setup(repr(readmetext))