borg/setup.py

112 lines
4.0 KiB
Python
Raw Normal View History

2010-02-28 19:22:45 +00:00
# -*- encoding: utf-8 *-*
2011-08-20 16:11:23 +00:00
import os
2010-10-30 11:24:23 +00:00
import sys
2011-08-20 16:11:23 +00:00
from glob import glob
2011-11-06 20:40:29 +00:00
import versioneer
versioneer.versionfile_source = 'attic/_version.py'
versioneer.versionfile_build = 'attic/_version.py'
versioneer.tag_prefix = ''
versioneer.parentdir_prefix = 'Attic-' # dirname like 'myproject-1.2.0'
2013-06-03 11:45:48 +00:00
min_python = (3, 2)
2011-11-06 20:40:29 +00:00
if sys.version_info < min_python:
2013-07-08 21:38:27 +00:00
print("Attic requires Python %d.%d or later" % min_python)
2011-11-06 20:40:29 +00:00
sys.exit(1)
2011-11-05 20:13:15 +00:00
2013-06-27 11:28:59 +00:00
try:
from setuptools import setup, Extension
except ImportError:
2013-06-27 20:48:49 +00:00
from distutils.core import setup, Extension
2010-02-28 19:22:45 +00:00
crypto_source = 'attic/crypto.pyx'
2013-07-08 21:38:27 +00:00
chunker_source = 'attic/chunker.pyx'
hashindex_source = 'attic/hashindex.pyx'
2011-08-20 16:11:23 +00:00
try:
from Cython.Distutils import build_ext
import Cython.Compiler.Main as cython_compiler
2011-11-06 20:40:29 +00:00
class Sdist(versioneer.cmd_sdist):
2011-08-20 16:11:23 +00:00
def __init__(self, *args, **kwargs):
2013-07-08 21:38:27 +00:00
for src in glob('attic/*.pyx'):
cython_compiler.compile(glob('attic/*.pyx'),
2011-08-20 16:11:23 +00:00
cython_compiler.default_options)
versioneer.cmd_sdist.__init__(self, *args, **kwargs)
2011-08-20 16:11:23 +00:00
2011-11-05 20:13:15 +00:00
def make_distribution(self):
self.filelist.extend(['attic/crypto.c', 'attic/chunker.c', 'attic/_chunker.c', 'attic/hashindex.c', 'attic/_hashindex.c'])
2013-06-24 11:53:02 +00:00
super(Sdist, self).make_distribution()
2011-08-20 16:11:23 +00:00
except ImportError:
class Sdist(versioneer.cmd_sdist):
2013-06-24 11:53:02 +00:00
def __init__(self, *args, **kwargs):
raise Exception('Cython is required to run sdist')
crypto_source = crypto_source.replace('.pyx', '.c')
chunker_source = chunker_source.replace('.pyx', '.c')
hashindex_source = hashindex_source.replace('.pyx', '.c')
from distutils.command.build_ext import build_ext
if not all(os.path.exists(path) for path in [crypto_source, chunker_source, hashindex_source]):
raise ImportError('The GIT version of Attic needs Cython. Install Cython or use a released version')
def detect_openssl(prefixes):
for prefix in prefixes:
filename = os.path.join(prefix, 'include', 'openssl', 'evp.h')
if os.path.exists(filename):
with open(filename, 'r') as fd:
if 'PKCS5_PBKDF2_HMAC(' in fd.read():
return prefix
possible_openssl_prefixes = ['/usr', '/usr/local', '/usr/local/opt/openssl', '/usr/local/ssl', '/usr/local/openssl', '/usr/local/attic']
if os.environ.get('ATTIC_OPENSSL_PREFIX'):
possible_openssl_prefixes.insert(0, os.environ.get('ATTIC_OPENSSL_PREFIX'))
ssl_prefix = detect_openssl(possible_openssl_prefixes)
if not ssl_prefix:
raise Exception('Unable to find OpenSSL >= 1.0 headers. (Looked here: {})'.format(', '.join(possible_openssl_prefixes)))
include_dirs = [os.path.join(ssl_prefix, 'include')]
library_dirs = [os.path.join(ssl_prefix, 'lib')]
2011-08-20 16:11:23 +00:00
2013-07-05 10:32:56 +00:00
with open('README.rst', 'r') as fd:
long_description = fd.read()
cmdclass = versioneer.get_cmdclass()
cmdclass.update({'build_ext': build_ext, 'sdist': Sdist})
2013-06-24 11:53:02 +00:00
setup(
2013-07-08 21:38:27 +00:00
name='Attic',
version=versioneer.get_version(),
2013-06-24 11:53:02 +00:00
author='Jonas Borgström',
author_email='jonas@borgstrom.se',
2014-03-09 14:12:07 +00:00
url='https://attic-backup.org/',
2013-07-08 21:38:27 +00:00
description='Deduplicated backups',
2013-07-05 10:32:56 +00:00
long_description=long_description,
2013-06-24 11:53:02 +00:00
license='BSD',
2013-06-27 20:10:15 +00:00
platforms=['Linux', 'MacOS X'],
2013-06-24 11:53:02 +00:00
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
2013-07-28 12:55:48 +00:00
'Operating System :: POSIX :: BSD :: FreeBSD',
2013-06-27 20:10:15 +00:00
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
2013-06-24 11:53:02 +00:00
'Programming Language :: Python',
'Topic :: Security :: Cryptography',
'Topic :: System :: Archiving :: Backup',
],
2013-07-08 21:38:27 +00:00
packages=['attic', 'attic.testsuite'],
scripts=['scripts/attic'],
cmdclass=cmdclass,
2013-06-24 11:53:02 +00:00
ext_modules=[
Extension('attic.crypto', [crypto_source], libraries=['crypto'], include_dirs=include_dirs, library_dirs=library_dirs),
2013-07-08 21:38:27 +00:00
Extension('attic.chunker', [chunker_source]),
Extension('attic.hashindex', [hashindex_source])
2013-06-24 11:53:02 +00:00
],
2013-06-27 11:28:59 +00:00
install_requires=['msgpack-python']
2013-06-24 11:53:02 +00:00
)