2014-04-11 15:45:11 +02:00
|
|
|
#!/usr/bin/env python
|
2016-03-29 11:56:51 +02:00
|
|
|
# This file is part carrier_zip module for Tryton.
|
2014-04-11 16:14:04 +02:00
|
|
|
# The COPYRIGHT file at the top level of this repository contains
|
|
|
|
# the full copyright notices and license terms.
|
2016-03-29 11:56:51 +02:00
|
|
|
|
2014-04-11 15:45:11 +02:00
|
|
|
from setuptools import setup
|
|
|
|
import re
|
|
|
|
import os
|
2016-03-29 11:56:51 +02:00
|
|
|
import io
|
|
|
|
try:
|
|
|
|
from configparser import ConfigParser
|
|
|
|
except ImportError:
|
|
|
|
from ConfigParser import ConfigParser
|
2014-04-11 15:45:11 +02:00
|
|
|
|
2014-04-11 16:14:04 +02:00
|
|
|
MODULE2PREFIX = {}
|
|
|
|
|
2014-04-11 15:45:11 +02:00
|
|
|
|
|
|
|
def read(fname):
|
2016-03-29 11:56:51 +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
|
2014-04-11 15:45:11 +02:00
|
|
|
|
2016-03-29 11:56:51 +02:00
|
|
|
config = ConfigParser()
|
2014-04-11 15:45:11 +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-03-29 11:56:51 +02:00
|
|
|
version = info.get('version', '0.0.1')
|
|
|
|
major_version, minor_version, _ = version.split('.', 2)
|
2014-04-11 15:45:11 +02:00
|
|
|
major_version = int(major_version)
|
|
|
|
minor_version = int(minor_version)
|
2016-03-29 11:56:51 +02:00
|
|
|
name = 'trytonzz_carrier_zip'
|
|
|
|
download_url = 'https://bitbucket.org/zikzakmedia/trytond-carrier_zip'
|
2014-04-11 15:45:11 +02:00
|
|
|
|
|
|
|
requires = []
|
|
|
|
for dep in info.get('depends', []):
|
2016-03-29 11:56:51 +02:00
|
|
|
if not re.match(r'(ir|res)(\W|$)', dep):
|
2014-04-11 16:14:04 +02:00
|
|
|
prefix = MODULE2PREFIX.get(dep, 'trytond')
|
2016-03-29 11:56:51 +02:00
|
|
|
requires.append(get_require_version('%s_%s' % (prefix, dep)))
|
|
|
|
requires.append(get_require_version('trytond'))
|
2014-04-11 16:14:04 +02:00
|
|
|
|
2016-03-29 11:56:51 +02:00
|
|
|
tests_require = []
|
|
|
|
dependency_links = []
|
|
|
|
if minor_version % 2:
|
|
|
|
# Add development index for testing with proteus
|
|
|
|
dependency_links.append('https://trydevpi.tryton.org/')
|
2014-04-11 15:45:11 +02:00
|
|
|
|
2016-03-29 11:56:51 +02:00
|
|
|
setup(name=name,
|
|
|
|
version=version,
|
|
|
|
description='Tryton Carrier Zip Module',
|
|
|
|
long_description=read('README'),
|
2014-04-11 16:14:04 +02:00
|
|
|
author='Zikzakmedia SL',
|
|
|
|
author_email='zikzak@zikzakmedia.com',
|
2016-03-29 11:56:51 +02:00
|
|
|
url='https://bitbucket.org/zikzakmedia/',
|
|
|
|
download_url=download_url,
|
|
|
|
keywords='',
|
|
|
|
package_dir={'trytond.modules.carrier_zip': '.'},
|
2014-04-11 15:45:11 +02:00
|
|
|
packages=[
|
2016-03-29 11:56:51 +02:00
|
|
|
'trytond.modules.carrier_zip',
|
|
|
|
'trytond.modules.carrier_zip.tests',
|
2014-04-11 15:45:11 +02:00
|
|
|
],
|
|
|
|
package_data={
|
2016-03-29 11:56:51 +02:00
|
|
|
'trytond.modules.carrier_zip': (info.get('xml', [])
|
|
|
|
+ ['tryton.cfg', 'view/*.xml', 'locale/*.po', '*.odt',
|
|
|
|
'icons/*.svg', 'tests/*.rst']),
|
2014-04-11 15:45:11 +02:00
|
|
|
},
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
'Environment :: Plugins',
|
2014-04-11 16:14:04 +02:00
|
|
|
'Framework :: Tryton',
|
2014-04-11 15:45:11 +02:00
|
|
|
'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:51 +02:00
|
|
|
'Natural Language :: Bulgarian',
|
2014-04-11 15:45:11 +02:00
|
|
|
'Natural Language :: Catalan',
|
2016-03-29 11:56:51 +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',
|
2014-04-11 15:45:11 +02:00
|
|
|
'Natural Language :: Spanish',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
2016-03-29 11:56:51 +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',
|
2014-04-11 15:45:11 +02:00
|
|
|
'Topic :: Office/Business',
|
|
|
|
],
|
|
|
|
license='GPL-3',
|
|
|
|
install_requires=requires,
|
2016-03-29 11:56:51 +02:00
|
|
|
dependency_links=dependency_links,
|
2014-04-11 15:45:11 +02:00
|
|
|
zip_safe=False,
|
|
|
|
entry_points="""
|
|
|
|
[trytond.modules]
|
2016-03-29 11:56:51 +02:00
|
|
|
carrier_zip = trytond.modules.carrier_zip
|
|
|
|
""",
|
2014-04-11 15:45:11 +02:00
|
|
|
test_suite='tests',
|
|
|
|
test_loader='trytond.test_loader:Loader',
|
2016-03-29 11:56:51 +02:00
|
|
|
tests_require=tests_require,
|
|
|
|
use_2to3=True,
|
|
|
|
)
|