trytond-quality_control/setup.py

107 lines
3.4 KiB
Python
Raw Permalink Normal View History

2013-05-25 09:40:42 +02:00
#!/usr/bin/env python
2013-11-23 11:46:48 +01:00
# encoding: utf-8
2013-05-25 09:40:42 +02:00
from setuptools import setup
import re
import os
2016-10-14 17:18:19 +02:00
import io
2018-08-18 10:44:40 +02:00
from configparser import ConfigParser
2013-05-25 09:40:42 +02:00
2018-02-01 16:32:41 +01:00
MODULE = 'quality_control'
PREFIX = 'nantic'
2013-05-25 09:40:42 +02:00
MODULE2PREFIX = {}
def read(fname):
2016-10-14 17:18:19 +02:00
return io.open(
os.path.join(os.path.dirname(__file__), fname),
'r', encoding='utf-8').read()
def get_require_version(name):
if minor_version % 2:
require = '%s >= %s.%s.dev0, < %s.%s'
else:
require = '%s >= %s.%s, < %s.%s'
require %= (name, major_version, minor_version,
major_version, minor_version + 1)
return require
2013-05-25 09:40:42 +02:00
2016-10-14 17:18:19 +02:00
config = ConfigParser()
2013-05-25 09:40:42 +02:00
config.readfp(open('tryton.cfg'))
info = dict(config.items('tryton'))
for key in ('depends', 'extras_depend', 'xml'):
if key in info:
info[key] = info[key].strip().splitlines()
2016-10-14 17:18:19 +02:00
version = info.get('version', '0.0.1')
major_version, minor_version, _ = version.split('.', 2)
2013-05-25 09:40:42 +02:00
major_version = int(major_version)
minor_version = int(minor_version)
requires = []
for dep in info.get('depends', []):
2016-10-14 17:18:19 +02:00
if not re.match(r'(ir|res)(\W|$)', dep):
2013-05-25 09:40:42 +02:00
prefix = MODULE2PREFIX.get(dep, 'trytond')
2016-10-14 17:18:19 +02:00
requires.append(get_require_version('%s_%s' % (prefix, dep)))
requires.append(get_require_version('trytond'))
2013-05-25 09:40:42 +02:00
2016-10-14 17:18:19 +02:00
tests_require = [get_require_version('proteus')]
dependency_links = []
if minor_version % 2:
# Add development index for testing with proteus
dependency_links.append('https://trydevpi.tryton.org/')
2013-05-25 09:40:42 +02:00
2018-02-01 16:32:41 +01:00
setup(name='%s_%s' % (PREFIX, MODULE),
2016-10-14 17:18:19 +02:00
version=version,
description='Tryton Quality Control Module',
2013-05-25 09:40:42 +02:00
long_description=read('README'),
author='NaN·tic',
2016-10-14 17:18:19 +02:00
author_email='info@nan-tic.com',
2013-05-25 09:40:42 +02:00
url='http://www.nan-tic.com/',
2018-02-01 16:32:41 +01:00
download_url="https://bitbucket.org/nantic/trytond-%s" % MODULE,
2016-10-14 17:18:19 +02:00
keywords='',
2018-02-01 16:32:41 +01:00
package_dir={'trytond.modules.%s' % MODULE: '.'},
2013-05-25 09:40:42 +02:00
packages=[
2018-02-01 16:32:41 +01:00
'trytond.modules.%s' % MODULE,
'trytond.modules.%s.tests' % MODULE,
2013-05-25 09:40:42 +02:00
],
package_data={
'trytond.modules.%s' % MODULE: (info.get('xml', []) +
['tryton.cfg', 'view/*.xml', 'locale/*.po', '*.odt',
2016-10-14 17:18:19 +02:00
'icons/*.svg', 'tests/*.rst']),
2013-05-25 09:40:42 +02:00
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Framework :: Tryton',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Legal Industry',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: Catalan',
'Natural Language :: Spanish',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
2016-10-14 17:18:19 +02:00
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
2013-05-25 09:40:42 +02:00
'Topic :: Office/Business',
],
license='GPL-3',
install_requires=requires,
2016-10-14 17:18:19 +02:00
dependency_links=dependency_links,
2013-05-25 09:40:42 +02:00
zip_safe=False,
entry_points="""
[trytond.modules]
2018-02-01 16:32:41 +01:00
%s = trytond.modules.%s
""" % (MODULE, MODULE),
2013-05-25 09:40:42 +02:00
test_suite='tests',
test_loader='trytond.test_loader:Loader',
tests_require=tests_require,
2016-10-14 17:18:19 +02:00
use_2to3=True,
convert_2to3_doctests=[
2018-02-01 16:32:41 +01:00
'tests/scenario_quality_control.rst',
],)