trytond-country_zip_es/setup.py

121 lines
4.0 KiB
Python
Raw Normal View History

2012-09-18 13:39:17 +02:00
#!/usr/bin/env python
2016-03-29 11:40:53 +02:00
# This file is part country_zip_es module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
2012-09-18 13:39:17 +02:00
from setuptools import setup
import re
import os
2016-03-29 11:40:53 +02:00
import io
2018-08-18 12:58:42 +02:00
from configparser import ConfigParser
2012-09-18 13:39:17 +02:00
2017-12-22 10:58:38 +01:00
MODULE = 'country_zip_es'
PREFIX = 'trytonspain'
MODULE2PREFIX = {}
2016-01-19 14:35:12 +01:00
def read(fname):
2016-03-29 11:40:53 +02:00
return io.open(
os.path.join(os.path.dirname(__file__), fname),
'r', encoding='utf-8').read()
2016-01-19 14:35:12 +01:00
2017-12-22 10:58:38 +01:00
2016-01-19 14:35:12 +01: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
2016-03-29 11:40:53 +02:00
config = ConfigParser()
2012-10-09 08:54:04 +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-01-19 14:35:12 +01:00
version = info.get('version', '0.0.1')
major_version, minor_version, _ = version.split('.', 2)
2012-09-18 13:39:17 +02:00
major_version = int(major_version)
minor_version = int(minor_version)
requires = []
for dep in info.get('depends', []):
2016-03-29 11:40:53 +02:00
if not re.match(r'(ir|res)(\W|$)', dep):
prefix = MODULE2PREFIX.get(dep, 'trytond')
requires.append(get_require_version('%s_%s' % (prefix, dep)))
2016-01-19 14:35:12 +01:00
requires.append(get_require_version('trytond'))
2016-03-29 11:40:53 +02:00
tests_require = [get_require_version('proteus')]
2016-01-19 14:35:12 +01:00
dependency_links = []
if minor_version % 2:
# Add development index for testing with proteus
dependency_links.append('https://trydevpi.tryton.org/')
2012-09-18 13:39:17 +02:00
2017-12-22 10:58:38 +01:00
setup(name='%s_%s' % (PREFIX, MODULE),
2016-03-29 11:40:53 +02:00
version=version,
2017-12-22 10:58:38 +01:00
description='Tryton country_zip_es Module',
2016-01-19 14:35:12 +01:00
long_description=read('README'),
2016-03-29 11:40:53 +02:00
author='TrytonSpain',
2016-11-30 14:12:50 +01:00
author_email='info@trytonspain.com',
2016-03-29 11:40:53 +02:00
url='https://bitbucket.org/trytonspain/',
2017-12-22 10:58:38 +01:00
download_url="https://bitbucket.org/trytonspain/trytond-%s" % MODULE,
2016-03-29 11:40:53 +02:00
keywords='',
2017-12-22 10:58:38 +01:00
package_dir={'trytond.modules.%s' % MODULE: '.'},
2012-09-18 13:39:17 +02:00
packages=[
2017-12-22 10:58:38 +01:00
'trytond.modules.%s' % MODULE,
'trytond.modules.%s.tests' % MODULE,
],
2012-09-18 13:39:17 +02:00
package_data={
2017-12-22 10:58:38 +01:00
'trytond.modules.%s' % MODULE: (info.get('xml', [])
2016-03-29 11:40:53 +02:00
+ ['tryton.cfg', 'view/*.xml', 'locale/*.po', '*.odt',
2018-01-17 17:56:49 +01:00
'icons/*.svg', 'tests/*.rst', '*.csv']),
},
2012-09-18 13:39:17 +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)',
2016-03-29 11:40:53 +02:00
'Natural Language :: Bulgarian',
2012-09-18 13:39:17 +02:00
'Natural Language :: Catalan',
2016-03-29 11:40:53 +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',
2012-09-18 13:39:17 +02:00
'Natural Language :: Spanish',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
2016-03-29 11:40:53 +02:00
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
2017-12-22 10:58:38 +01:00
'Programming Language :: Python :: 3.6',
2016-03-29 11:40:53 +02:00
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
2012-09-18 13:39:17 +02:00
'Topic :: Office/Business',
],
2012-09-18 13:39:17 +02:00
license='GPL-3',
install_requires=requires,
2016-01-19 14:35:12 +01:00
dependency_links=dependency_links,
2012-09-18 13:39:17 +02:00
zip_safe=False,
entry_points="""
2012-11-13 16:05:28 +01:00
[trytond.modules]
2017-12-22 10:58:38 +01:00
%s = trytond.modules.%s
""" % (MODULE, MODULE),
2015-01-21 19:25:14 +01:00
test_suite='tests',
test_loader='trytond.test_loader:Loader',
tests_require=tests_require,
2016-03-29 11:40:53 +02:00
use_2to3=True,
2017-12-22 10:58:38 +01:00
convert_2to3_doctests=[
'tests/scenario_country_zip_es.rst',
],
2016-03-29 11:40:53 +02:00
)