2007-03-29 21:01:28 +00:00
|
|
|
#! /usr/bin/env python
|
2006-12-05 08:29:26 +00:00
|
|
|
|
2007-04-30 20:06:09 +00:00
|
|
|
# Allmydata Tahoe -- secure, distributed storage grid
|
2007-04-27 20:47:15 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2007 Allmydata, Inc.
|
|
|
|
#
|
|
|
|
# This file is part of tahoe.
|
|
|
|
#
|
|
|
|
# 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, with the added permission that, if you become obligated
|
|
|
|
# to release a derived work under this licence (as per section 2.b), you may
|
2007-09-12 18:31:57 +00:00
|
|
|
# delay the fulfillment of this obligation for up to 12 months. If you are
|
|
|
|
# obligated to release code under section 2.b of this licence, you are
|
|
|
|
# obligated to release it under these same terms, including the 12-month grace
|
|
|
|
# period clause. See the COPYING file for details.
|
2007-04-27 20:47:15 +00:00
|
|
|
#
|
|
|
|
# If you would like to inquire about a commercial relationship with Allmydata,
|
|
|
|
# Inc., please contact partnerships@allmydata.com and visit
|
|
|
|
# http://allmydata.com/.
|
2006-12-05 08:29:26 +00:00
|
|
|
|
2007-09-13 01:57:10 +00:00
|
|
|
from ez_setup import use_setuptools
|
|
|
|
import sys
|
|
|
|
if 'cygwin' in sys.platform.lower():
|
|
|
|
min_version='0.6c6'
|
|
|
|
else:
|
|
|
|
min_version='0.6a9'
|
2007-10-03 22:14:14 +00:00
|
|
|
use_setuptools(min_version=min_version, download_base="file:misc/dependencies/", download_delay=0)
|
2007-09-13 21:51:19 +00:00
|
|
|
|
2007-09-12 23:02:53 +00:00
|
|
|
from setuptools import Extension, setup
|
2007-09-13 01:57:10 +00:00
|
|
|
import re, os.path
|
2006-12-14 10:25:30 +00:00
|
|
|
|
2007-09-15 22:05:35 +00:00
|
|
|
from calcdeps import install_requires, dependency_links
|
|
|
|
|
2007-04-27 20:47:15 +00:00
|
|
|
trove_classifiers=[
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
"Environment :: Console",
|
|
|
|
"Environment :: Web Environment",
|
2007-10-16 03:48:09 +00:00
|
|
|
# "License :: Free Software (GPL variant)", # Not a real acceptable value. I guess this means we really need to get our licence DFSG/OSI approved.
|
|
|
|
# "License :: Open Source (GPL variant)", # Not a real acceptable value. I guess this means we really need to get our licence DFSG/OSI approved.
|
2007-04-27 20:47:15 +00:00
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Intended Audience :: End Users/Desktop",
|
|
|
|
"Intended Audience :: System Administrators",
|
|
|
|
"Operating System :: Microsoft",
|
|
|
|
"Operating System :: Microsoft :: Windows",
|
|
|
|
"Operating System :: Unix",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Operating System :: POSIX",
|
|
|
|
"Operating System :: MacOS :: MacOS X",
|
|
|
|
"Operating System :: Microsoft :: Windows :: Windows NT/2000",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Programming Language :: C",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Topic :: Utilities",
|
|
|
|
"Topic :: System :: Systems Administration",
|
|
|
|
"Topic :: System :: Filesystems",
|
|
|
|
"Topic :: System :: Distributed Computing",
|
|
|
|
"Topic :: Software Development :: Libraries",
|
|
|
|
"Topic :: Communications :: Usenet News",
|
|
|
|
"Topic :: System :: Archiving :: Backup",
|
|
|
|
"Topic :: System :: Archiving :: Mirroring",
|
|
|
|
"Topic :: System :: Archiving",
|
|
|
|
]
|
2006-12-14 10:25:30 +00:00
|
|
|
|
2007-05-04 03:14:07 +00:00
|
|
|
|
2007-09-24 19:38:59 +00:00
|
|
|
# Build _version.py before trying to extract a version from it. If we aren't
|
|
|
|
# running from a darcs checkout, this will leave any pre-existing _version.py
|
|
|
|
# alone.
|
2007-09-24 01:43:36 +00:00
|
|
|
try:
|
2007-09-24 19:38:59 +00:00
|
|
|
os.system(" ".join([sys.executable,
|
|
|
|
"misc/make-version.py",
|
|
|
|
"allmydata-tahoe",
|
|
|
|
'"src/allmydata/_version.py"', # cygwin vs slashes
|
|
|
|
]))
|
2007-09-24 01:43:36 +00:00
|
|
|
except Exception, le:
|
|
|
|
pass
|
2007-09-12 23:02:23 +00:00
|
|
|
VERSIONFILE = "src/allmydata/_version.py"
|
2007-05-04 03:14:07 +00:00
|
|
|
verstr = "unknown"
|
|
|
|
if os.path.exists(VERSIONFILE):
|
|
|
|
VSRE = re.compile("^verstr = ['\"]([^'\"]*)['\"]", re.M)
|
|
|
|
verstrline = open(VERSIONFILE, "rt").read()
|
|
|
|
mo = VSRE.search(verstrline)
|
|
|
|
if mo:
|
|
|
|
verstr = mo.group(1)
|
|
|
|
else:
|
2007-09-12 23:02:23 +00:00
|
|
|
print "unable to find version in src/allmydata/_version.py"
|
|
|
|
raise RuntimeError("if _version.py exists, it must be well-formed")
|
2007-05-01 20:23:15 +00:00
|
|
|
|
2007-08-14 20:57:41 +00:00
|
|
|
|
|
|
|
LONG_DESCRIPTION=\
|
|
|
|
"""Welcome to the AllMyData "tahoe" project. This project implements a
|
2007-04-30 20:06:09 +00:00
|
|
|
secure, distributed, fault-tolerant storage grid.
|
2006-12-05 08:29:26 +00:00
|
|
|
|
2007-04-30 20:06:09 +00:00
|
|
|
The basic idea is that the data in this storage grid is spread over all
|
2007-04-27 20:47:15 +00:00
|
|
|
participating nodes, using an algorithm that can recover the data even if a
|
2007-08-14 20:57:41 +00:00
|
|
|
majority of the nodes are no longer available."""
|
|
|
|
|
2007-09-13 22:37:27 +00:00
|
|
|
|
2007-08-14 20:57:41 +00:00
|
|
|
setup(name='allmydata-tahoe',
|
|
|
|
version=verstr,
|
|
|
|
description='secure, distributed storage grid',
|
|
|
|
long_description=LONG_DESCRIPTION,
|
2007-04-27 20:47:15 +00:00
|
|
|
author='Allmydata, Inc.',
|
|
|
|
author_email='tahoe-dev@allmydata.org',
|
|
|
|
url='http://allmydata.org/',
|
|
|
|
license='GNU GPL',
|
|
|
|
packages=["allmydata", "allmydata.test", "allmydata.util",
|
2007-08-14 20:57:41 +00:00
|
|
|
"allmydata.scripts",
|
|
|
|
"allmydata.Crypto", "allmydata.Crypto.Cipher",
|
2007-08-16 00:36:39 +00:00
|
|
|
"allmydata.Crypto.Hash", "allmydata.Crypto.Util",
|
2007-08-16 07:54:52 +00:00
|
|
|
#"allmydata.Crypto.PublicKey",
|
|
|
|
],
|
2007-04-27 20:47:15 +00:00
|
|
|
package_dir={ "allmydata": "src/allmydata",},
|
2007-09-02 21:47:15 +00:00
|
|
|
package_data={ 'allmydata': ['web/*.xhtml', 'web/*.html', 'web/*.css'] },
|
2007-04-27 20:47:15 +00:00
|
|
|
classifiers=trove_classifiers,
|
|
|
|
test_suite="allmydata.test",
|
2007-09-15 22:05:35 +00:00
|
|
|
install_requires=install_requires,
|
2007-10-13 20:38:18 +00:00
|
|
|
setup_requires=["setuptools_darcs_plugin >= 1.0",],
|
2007-09-13 22:37:27 +00:00
|
|
|
dependency_links=dependency_links,
|
2007-10-11 10:38:24 +00:00
|
|
|
entry_points = { 'console_scripts': [ 'tahoe = allmydata.scripts.runner:run' ] },
|
2007-08-14 20:57:41 +00:00
|
|
|
ext_modules=[
|
|
|
|
Extension("allmydata.Crypto.Cipher.AES",
|
|
|
|
include_dirs=["src/allmydata/Crypto"],
|
|
|
|
sources=["src/allmydata/Crypto/AES.c"]),
|
|
|
|
Extension("allmydata.Crypto.Hash.SHA256",
|
|
|
|
include_dirs=["src/allmydata/Crypto"],
|
|
|
|
sources=["src/allmydata/Crypto/SHA256.c"]),
|
2007-08-16 07:52:21 +00:00
|
|
|
# _fastmath requires gmp. Since we're not using rsa yet, hold off
|
|
|
|
# on requiring this. (note that RSA.py doesn't require _fastmath,
|
|
|
|
# but I doubt we'd want to use the pure-python version).
|
|
|
|
# Extension("allmydata.Crypto.PublicKey._fastmath",
|
|
|
|
# sources=["src/allmydata/Crypto/_fastmath.c"]),
|
2007-08-16 07:56:58 +00:00
|
|
|
],
|
2007-09-13 22:37:55 +00:00
|
|
|
zip_safe=False, # We prefer unzipped for easier access.
|
2007-04-27 20:47:15 +00:00
|
|
|
)
|