trytond-electronic_mail_filter/setup.py

147 lines
4.6 KiB
Python
Raw Permalink Normal View History

2019-03-08 14:16:30 +01:00
#!/usr/bin/env python3
2016-03-29 11:56:54 +02:00
# This file is part electronic_mail_filter module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
2015-01-23 12:44:40 +01:00
from setuptools import setup
import re
import os
2016-03-29 11:56:54 +02:00
import io
2019-03-08 14:16:30 +01:00
from configparser import ConfigParser
2015-01-23 12:44:40 +01:00
2018-06-27 16:20:35 +02:00
MODULE2PREFIX = {
2019-03-11 09:53:21 +01:00
'electronic_mail_template': 'datalife',
2018-06-27 16:20:35 +02:00
'searching': 'trytonzz',
}
2015-01-23 12:44:40 +01:00
2020-02-11 12:43:37 +01:00
URL = {
'datalife': 'gitlab.com/datalifeit',
'trytonzz': 'github.com/datalifeit'
2019-03-11 09:53:21 +01:00
}
2015-01-23 12:44:40 +01:00
def read(fname):
2016-03-29 11:56:54 +02:00
return io.open(
os.path.join(os.path.dirname(__file__), fname),
'r', encoding='utf-8').read()
2018-06-27 16:20:35 +02:00
2016-03-29 11:56:54 +02:00
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
2015-01-23 12:44:40 +01:00
2018-06-27 16:20:35 +02:00
2016-03-29 11:56:54 +02:00
config = ConfigParser()
2015-01-23 12:44:40 +01: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-03-29 11:56:54 +02:00
version = info.get('version', '0.0.1')
major_version, minor_version, _ = version.split('.', 2)
2015-01-23 12:44:40 +01:00
major_version = int(major_version)
minor_version = int(minor_version)
2016-03-29 11:56:54 +02:00
name = 'trytonzz_electronic_mail_filter'
2020-02-11 12:43:37 +01:00
download_url = 'https://gitlab.com/datalifeit/trytond-electronic_mail_filter'
2015-01-23 12:44:40 +01:00
2018-06-27 16:20:35 +02:00
series = '%s.%s' % (major_version, minor_version)
if minor_version % 2:
branch = 'default'
else:
branch = series
2019-03-11 09:53:21 +01:00
2020-02-11 12:43:37 +01:00
dependency_links = {m: 'git+https://%(url)s/'
'trytond-%(module)s@%(branch)s'
'#egg=%(company)s_%(module)s' % {
'url': URL[c],
2019-03-11 09:53:21 +01:00
'module': m,
'company': c,
'branch': branch}
2019-03-11 09:53:21 +01:00
for m, c in MODULE2PREFIX.items()}
requires = []
2019-03-08 14:16:30 +01:00
for dep in info.get('depends', []):
if not re.match(r'(ir|res)(\W|$)', dep):
prefix = MODULE2PREFIX.get(dep, 'trytond')
req = get_require_version('%s_%s' % (prefix, dep))
if dep in dependency_links:
req = '%s_%s @ %s' % (prefix, dep, dependency_links[dep])
requires.append(req)
requires.append(get_require_version('trytond'))
tests_require = [get_require_version('proteus')]
dependency_links = list(dependency_links.values())
2016-03-29 11:56:54 +02:00
if minor_version % 2:
dependency_links.append('https://trydevpi.tryton.org/')
2015-01-23 12:44:40 +01:00
2016-03-29 11:56:54 +02:00
setup(name=name,
version=version,
description='Tryton Electronic Mail Filter Module',
long_description=read('README'),
2015-01-23 12:44:40 +01:00
author='Zikzakmedia SL',
author_email='zikzak@zikzakmedia.com',
2016-03-29 11:56:54 +02:00
url='https://bitbucket.org/zikzakmedia/',
download_url=download_url,
keywords='',
package_dir={'trytond.modules.electronic_mail_filter': '.'},
2015-01-23 12:44:40 +01:00
packages=[
2016-03-29 11:56:54 +02:00
'trytond.modules.electronic_mail_filter',
'trytond.modules.electronic_mail_filter.tests',
2015-01-23 12:44:40 +01:00
],
package_data={
2016-03-29 11:56:54 +02:00
'trytond.modules.electronic_mail_filter': (info.get('xml', [])
2019-03-08 14:16:30 +01:00
+ ['tryton.cfg', 'view/*.xml', 'locale/*.po', '*.fodt',
2016-03-29 11:56:54 +02:00
'icons/*.svg', 'tests/*.rst']),
2015-01-23 12:44:40 +01: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)',
2016-03-29 11:56:54 +02:00
'Natural Language :: Bulgarian',
2015-01-23 12:44:40 +01:00
'Natural Language :: Catalan',
2016-03-29 11:56:54 +02:00
'Natural Language :: Czech',
'Natural Language :: Dutch',
'Natural Language :: English',
'Natural Language :: French',
'Natural Language :: German',
'Natural Language :: Hungarian',
'Natural Language :: Italian',
'Natural Language :: Portuguese (Brazilian)',
'Natural Language :: Russian',
'Natural Language :: Slovenian',
2015-01-23 12:44:40 +01:00
'Natural Language :: Spanish',
'Operating System :: OS Independent',
2016-03-29 11:56:54 +02:00
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
2019-03-08 14:16:30 +01:00
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
2016-03-29 11:56:54 +02:00
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
2015-01-23 12:44:40 +01:00
'Topic :: Office/Business',
],
license='GPL-3',
2019-03-08 14:16:30 +01:00
python_requires='>=3.4',
2015-01-23 12:44:40 +01:00
install_requires=requires,
2016-03-29 11:56:54 +02:00
dependency_links=dependency_links,
2015-01-23 12:44:40 +01:00
zip_safe=False,
entry_points="""
[trytond.modules]
2016-03-29 11:56:54 +02:00
electronic_mail_filter = trytond.modules.electronic_mail_filter
""",
2015-01-23 12:44:40 +01:00
test_suite='tests',
test_loader='trytond.test_loader:Loader',
2016-03-29 11:56:54 +02:00
tests_require=tests_require,
)