eopayment/setup.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

171 lines
5.1 KiB
Python
Raw Normal View History

#!/usr/bin/env python
'''
Setup script for eopayment
'''
import distutils
2011-05-02 09:56:29 +02:00
import distutils.core
import doctest
import io
import os
import subprocess
import sys
from distutils.cmd import Command
from distutils.command.build import build as _build
2012-01-31 10:59:26 +01:00
from glob import glob
from os.path import basename
from os.path import join as pjoin
from os.path import splitext
2012-01-31 10:59:26 +01:00
from unittest import TestLoader, TextTestRunner
import setuptools
from setuptools.command.install_lib import install_lib as _install_lib
from setuptools.command.sdist import sdist
2012-01-31 10:59:26 +01:00
2012-01-31 10:59:26 +01:00
class TestCommand(distutils.core.Command):
user_options = []
2012-01-31 10:59:26 +01:00
def initialize_options(self):
self._dir = os.getcwd()
def finalize_options(self):
pass
def run(self):
2021-11-26 10:43:17 +01:00
"""
2012-01-31 10:59:26 +01:00
Finds all the tests modules in tests/, and runs them.
2021-11-26 10:43:17 +01:00
"""
testfiles = []
2012-01-31 10:59:26 +01:00
for t in glob(pjoin(self._dir, 'tests', '*.py')):
if not t.endswith('__init__.py'):
testfiles.append('.'.join(['tests', splitext(basename(t))[0]]))
tests = TestLoader().loadTestsFromNames(testfiles)
import eopayment
2021-11-26 10:43:17 +01:00
tests.addTests(doctest.DocTestSuite(eopayment))
t = TextTestRunner(verbosity=4)
2012-01-31 10:59:26 +01:00
t.run(tests)
class eo_sdist(sdist):
def run(self):
2018-03-26 09:56:16 +02:00
print('creating VERSION file')
if os.path.exists('VERSION'):
os.remove('VERSION')
version = get_version()
version_file = open('VERSION', 'w')
version_file.write(version)
version_file.close()
sdist.run(self)
2018-03-26 09:56:16 +02:00
print('removing VERSION file')
if os.path.exists('VERSION'):
os.remove('VERSION')
def get_version():
"""Use the VERSION, if absent generates a version with git describe, if not
tag exists, take 0.0.0- and add the length of the commit log.
2021-11-26 10:43:17 +01:00
"""
if os.path.exists('VERSION'):
with open('VERSION') as v:
return v.read()
if os.path.exists('.git'):
p = subprocess.Popen(
['git', 'describe', '--dirty', '--match=v*'], stdout=subprocess.PIPE, stderr=subprocess.PIPE
)
result = p.communicate()[0]
if p.returncode == 0:
result = result.decode('ascii').strip()[1:] # strip spaces/newlines and initial v
if '-' in result: # not a tagged version
try:
real_number, commit_count, commit_hash = result.split('-', 2)
except ValueError:
real_number, commit_hash = result.split('-', 2)
commit_count = 0
version = '%s.post%s+%s' % (real_number, commit_count, commit_hash)
else:
version = result.replace('.dirty', '+dirty')
return version
else:
return '0.0.post%s' % len(subprocess.check_output(['git', 'rev-list', 'HEAD']).splitlines())
return '0.0.0'
class compile_translations(Command):
description = 'compile message catalogs to MO files via django compilemessages'
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
curdir = os.getcwd()
try:
from django.core.management import call_command
for path, dirs, files in os.walk('eopayment'):
if 'locale' not in dirs:
continue
os.chdir(os.path.realpath(path))
call_command('compilemessages')
except ImportError:
sys.stderr.write('!!! Please install Django >= 3.2 to build translations\n')
finally:
os.chdir(curdir)
class build(_build):
sub_commands = [('compile_translations', None)] + _build.sub_commands
class install_lib(_install_lib):
def run(self):
self.run_command('compile_translations')
_install_lib.run(self)
setuptools.setup(
name='eopayment',
version=get_version(),
license='GPLv3 or later',
description='Common API to use all French online payment credit card ' 'processing services',
include_package_data=True,
long_description=open(os.path.join(os.path.dirname(__file__), 'README.txt'), encoding='utf-8').read(),
long_description_content_type='text/plain',
url='http://dev.entrouvert.org/projects/eopayment/',
author="Entr'ouvert",
author_email='info@entrouvert.com',
maintainer='Benjamin Dauvergne',
maintainer_email='bdauvergne@entrouvert.com',
2018-08-12 19:51:31 +02:00
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
packages=['eopayment'],
install_requires=[
'pycryptodomex',
2018-10-12 15:33:47 +02:00
'pytz',
'requests',
'click',
2020-01-20 15:24:27 +01:00
'zeep >= 2.5',
],
2016-11-23 14:35:34 +01:00
cmdclass={
'build': build,
'compile_translations': compile_translations,
'install_lib': install_lib,
2016-11-23 14:35:34 +01:00
'sdist': eo_sdist,
},
2016-02-01 17:59:01 +01:00
)