trytond-account_code_digits/setup.py

112 lines
3.2 KiB
Python
Raw Permalink Normal View History

2012-05-01 11:03:03 +02:00
#!/usr/bin/env python
2020-04-24 05:06:04 +02:00
# encoding: utf-8
2012-05-01 11:03:03 +02:00
from setuptools import setup
import re
import os
2016-03-29 11:40:47 +02:00
import io
2018-08-24 12:16:07 +02:00
from configparser import ConfigParser
2012-05-01 11:03:03 +02:00
2017-12-22 11:04:26 +01:00
MODULE = 'account_code_digits'
PREFIX = 'trytonspain'
MODULE2PREFIX = {}
def read(fname):
2016-03-29 11:40:47 +02:00
return io.open(
os.path.join(os.path.dirname(__file__), fname),
'r', encoding='utf-8').read()
2017-12-12 10:42:56 +01:00
2016-03-29 11:40:47 +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
2016-03-29 11:40:47 +02:00
config = ConfigParser()
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()
2018-01-08 19:07:30 +01:00
2016-03-29 11:40:47 +02:00
version = info.get('version', '0.0.1')
major_version, minor_version, _ = version.split('.', 2)
2012-05-01 11:03:03 +02:00
major_version = int(major_version)
minor_version = int(minor_version)
requires = []
2020-04-24 05:06:04 +02:00
2012-05-01 11:03:03 +02:00
for dep in info.get('depends', []):
2016-03-29 11:40:47 +02:00
if not re.match(r'(ir|res)(\W|$)', dep):
prefix = MODULE2PREFIX.get(dep, 'trytond')
2016-03-29 11:40:47 +02:00
requires.append(get_require_version('%s_%s' % (prefix, dep)))
requires.append(get_require_version('trytond'))
2020-04-24 05:06:04 +02:00
requires += [get_require_version('trytond_account')]
tests_require = [
get_require_version('proteus'),
]
series = '%s.%s' % (major_version, minor_version)
if minor_version % 2:
branch = 'master'
else:
branch = series
2012-05-01 11:03:03 +02:00
2016-03-29 11:40:47 +02:00
dependency_links = []
2020-04-24 05:06:04 +02:00
2016-03-29 11:40:47 +02:00
if minor_version % 2:
# Add development index for testing with proteus
dependency_links.append('https://trydevpi.tryton.org/')
2017-12-22 11:04:26 +01:00
setup(name='%s_%s' % (PREFIX, MODULE),
2016-03-29 11:40:47 +02:00
version=version,
2020-04-24 05:06:04 +02:00
description='',
long_description=read('README'),
2020-04-24 05:06:04 +02:00
author='trytonspain',
url='http://www.nan-tic.com/',
download_url='https://github.com:trytonspain/trytond-account_code_digits',
2017-12-22 11:04:26 +01:00
package_dir={'trytond.modules.%s' % MODULE: '.'},
2012-05-01 11:03:03 +02:00
packages=[
2017-12-22 11:04:26 +01:00
'trytond.modules.%s' % MODULE,
'trytond.modules.%s.tests' % MODULE,
],
2012-05-01 11:03:03 +02:00
package_data={
2017-12-22 11:04:26 +01:00
'trytond.modules.%s' % MODULE: (info.get('xml', [])
2020-04-24 05:06:04 +02:00
+ ['tryton.cfg', 'locale/*.po', 'tests/*.rst', 'view/*.xml']),
},
2012-05-01 11:03:03 +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 :: English',
2012-05-01 11:03:03 +02:00
'Natural Language :: Spanish',
'Operating System :: OS Independent',
2017-12-22 11:04:26 +01:00
'Programming Language :: Python :: 3.6',
2020-04-24 05:06:04 +02:00
'Programming Language :: Python :: 3.7',
'Topic :: Office/Business',
],
2012-05-01 11:03:03 +02:00
license='GPL-3',
install_requires=requires,
2016-03-29 11:40:47 +02:00
dependency_links=dependency_links,
2012-05-01 11:03:03 +02:00
zip_safe=False,
entry_points="""
2012-11-13 16:05:21 +01:00
[trytond.modules]
2017-12-22 11:04:26 +01:00
%s = trytond.modules.%s
""" % (MODULE, MODULE),
2012-05-01 11:03:03 +02:00
test_suite='tests',
2012-11-13 16:05:21 +01:00
test_loader='trytond.test_loader:Loader',
2018-01-08 19:07:30 +01:00
tests_require=tests_require,
2020-04-24 05:06:04 +02:00
2020-12-05 00:48:00 +01:00
)