]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/blob - setup.py
zfec: rearrange files
[tahoe-lafs/zfec.git] / setup.py
1 
2 # zfec -- fast forward error correction library with Python interface
3 #
4 # copyright © 2007-2013 Zooko Wilcox-O'Hearn
5 #
6 # This file is part of zfec.
7 #
8 # See README.rst for licensing information.
9
10 import glob, os, re, sys
11
12 egg = os.path.realpath(glob.glob('setuptools-*.egg')[0])
13 sys.path.insert(0, egg)
14 import setuptools; setuptools.bootstrap_install_from = egg
15
16 from setuptools import Extension, find_packages, setup
17
18 if "--debug" in sys.argv:
19     DEBUGMODE=True
20     sys.argv.remove("--debug")
21 else:
22     DEBUGMODE=False
23
24 extra_compile_args=[]
25 extra_link_args=[]
26
27 extra_compile_args.append("-std=c99")
28
29 define_macros=[]
30 undef_macros=[]
31
32 for arg in sys.argv:
33     if arg.startswith("--stride="):
34         stride = int(arg[len("--stride="):])
35         define_macros.append(('STRIDE', stride))
36         sys.argv.remove(arg)
37         break
38
39 if DEBUGMODE:
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')
45
46 trove_classifiers=[
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",
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 tests_require = []
100
101 tests_require.append("pyutil >= 1.3.19")
102
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')
108
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
114
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
119 if False:
120     setup_requires.append('setuptools_darcs >= 1.1.0')
121
122
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'])
128
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')
135
136 # stdeb is required to build Debian dsc files.
137 if "sdist_dsc" in sys.argv:
138     setup_requires.append('stdeb')
139
140 data_fnames=[ 'COPYING.GPL', 'changelog', 'COPYING.TGPPL.rst', 'TODO', 'README.rst' ]
141
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)]
146
147 readmetext = open('README.rst').read()
148 if readmetext[:3] == '\xef\xbb\xbf':
149     # utf-8 "BOM"
150     readmetext = readmetext[3:]
151
152 try:
153     readmetext = readmetext.decode('utf-8')
154 except UnicodeDecodeError:
155     pass
156
157 install_requires=["pyutil >= 1.3.19"]
158
159 # argparse comes built into Python >= 2.7, and is provided by the "argparse"
160 # distribution for earlier versions of Python.
161 try:
162     import argparse
163     argparse # hush pyflakes
164 except ImportError:
165     install_requires.append("argparse >= 0.8")
166
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.
170
171 def _setup(longdescription):
172     setup(name=PKG,
173           version=verstr,
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.
191           extras_require={
192             'ed25519=ba95497adf4db8e17f688c0979003c48c76897d60e2d2193f938b9ab62115f59':[],
193             },
194           )
195
196 try:
197     _setup(readmetext)
198 except UnicodeEncodeError:
199     _setup(repr(readmetext))