setup.py 4.23 KB
Newer Older
1 2
##############################################################################
#
3
# Copyright (c) 2008 Zope Foundation and Contributors.
4 5 6 7 8 9 10 11 12 13 14 15
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################

import os
Tres Seaver's avatar
Tres Seaver committed
16 17
import platform
import sys
18 19 20 21 22

from setuptools import Extension
from setuptools import find_packages
from setuptools import setup

Tres Seaver's avatar
svb  
Tres Seaver committed
23
version = '4.2.5.dev0'
Marius Gedminas's avatar
Marius Gedminas committed
24

25
here = os.path.abspath(os.path.dirname(__file__))
26

27

28
def _read_file(filename):
29 30 31
    with open(os.path.join(here, filename)) as f:
        return f.read()

32 33

README = (_read_file('README.rst') + '\n\n' + _read_file('CHANGES.rst'))
34

Tres Seaver's avatar
Tres Seaver committed
35 36 37
py_impl = getattr(platform, 'python_implementation', lambda: None)
is_pypy = py_impl() == 'PyPy'
is_jython = 'java' in sys.platform
38
is_pure = os.environ.get('PURE_PYTHON')
Tres Seaver's avatar
Tres Seaver committed
39 40 41 42

# Jython cannot build the C optimizations, while on PyPy they are
# anti-optimizations (the C extension compatibility layer is known-slow,
# and defeats JIT opportunities).
43
if is_pypy or is_jython or is_pure:
Tres Seaver's avatar
Tres Seaver committed
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
    ext_modules = headers = []
else:
    ext_modules = [Extension(name = 'persistent.cPersistence',
                             sources= ['persistent/cPersistence.c',
                                       'persistent/ring.c',
                                      ],
                             depends = ['persistent/cPersistence.h',
                                        'persistent/ring.h',
                                        'persistent/ring.c',
                                       ]
                            ),
                   Extension(name = 'persistent.cPickleCache',
                             sources= ['persistent/cPickleCache.c',
                                       'persistent/ring.c'
                                      ],
                             depends = ['persistent/cPersistence.h',
                                        'persistent/ring.h',
                                        'persistent/ring.c',
                                       ]
                            ),
64 65
                   Extension(name = 'persistent._timestamp',
                             sources= ['persistent/_timestamp.c',
Tres Seaver's avatar
Tres Seaver committed
66 67 68 69 70 71
                                      ],
                            ),
                  ]
    headers = ['persistent/cPersistence.h',
               'persistent/ring.h']

72
setup(name='persistent',
73
      version=version,
74 75 76 77 78 79
      description='Translucent persistent objects',
      long_description=README,
      classifiers=[
        "Development Status :: 6 - Mature",
        "License :: OSI Approved :: Zope Public License",
        "Programming Language :: Python",
Tres Seaver's avatar
Tres Seaver committed
80
        'Programming Language :: Python :: 2',
Tres Seaver's avatar
Tres Seaver committed
81
        'Programming Language :: Python :: 2.7',
Tres Seaver's avatar
Tres Seaver committed
82
        'Programming Language :: Python :: 3',
Tres Seaver's avatar
Tres Seaver committed
83
        'Programming Language :: Python :: 3.3',
84
        'Programming Language :: Python :: 3.4',
Tres Seaver's avatar
Tres Seaver committed
85
        'Programming Language :: Python :: 3.5',
Marius Gedminas's avatar
Marius Gedminas committed
86
        'Programming Language :: Python :: 3.6',
Tres Seaver's avatar
Tres Seaver committed
87 88
        "Programming Language :: Python :: Implementation :: CPython",
        "Programming Language :: Python :: Implementation :: PyPy",
Tres Seaver's avatar
Tres Seaver committed
89
        "Framework :: ZODB",
90 91 92 93 94 95 96 97 98 99 100 101 102
        "Topic :: Database",
        "Topic :: Software Development :: Libraries :: Python Modules",
        "Operating System :: Microsoft :: Windows",
        "Operating System :: Unix",
        ],
      author="Zope Corporation",
      author_email="zodb-dev@zope.org",
      url="http://www.zope.org/Products/ZODB",
      license="ZPL 2.1",
      platforms=["any"],
      packages=find_packages(),
      include_package_data=True,
      zip_safe=False,
Marius Gedminas's avatar
Marius Gedminas committed
103 104 105
      ext_modules=ext_modules,
      headers=headers,
      extras_require={
Tres Seaver's avatar
Tres Seaver committed
106 107
        'test': (),
        'testing': ['nose', 'coverage'],
Tres Seaver's avatar
Tres Seaver committed
108
        'docs': ['Sphinx', 'repoze.sphinx.autointerface'],
109
      },
110 111 112
      test_suite="persistent.tests",
      install_requires=[
        'zope.interface',
113
      ],
Marius Gedminas's avatar
Marius Gedminas committed
114 115
      entry_points={},
      )