trytond-product/setup.py

133 lines
4.5 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
2014-12-02 12:55:30 +01:00
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
2008-06-23 20:55:06 +02:00
import io
import os
import re
from configparser import ConfigParser
from setuptools import setup, find_packages
2008-06-23 20:55:06 +02:00
def read(fname):
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
config = ConfigParser()
config.read_file(open(os.path.join(os.path.dirname(__file__), 'tryton.cfg')))
info = dict(config.items('tryton'))
for key in ('depends', 'extras_depend', 'xml'):
if key in info:
info[key] = info[key].strip().splitlines()
version = info.get('version', '0.0.1')
major_version, minor_version, _ = version.split('.', 2)
major_version = int(major_version)
minor_version = int(minor_version)
name = 'trytond_product'
download_url = 'http://downloads.tryton.org/%s.%s/' % (
major_version, minor_version)
if minor_version % 2:
version = '%s.%s.dev0' % (major_version, minor_version)
download_url = (
'hg+http://hg.tryton.org/modules/%s#egg=%s-%s' % (
name[8:], name, version))
2008-06-23 20:55:06 +02:00
requires = ['python-sql', 'python-stdnum']
2008-10-03 15:35:27 +02:00
for dep in info.get('depends', []):
if not re.match(r'(ir|res)(\W|$)', dep):
requires.append(get_require_version('trytond_%s' % dep))
requires.append(get_require_version('trytond'))
tests_require = [get_require_version('proteus')]
2018-01-21 19:58:02 +01:00
dependency_links = []
if minor_version % 2:
dependency_links.append('https://trydevpi.tryton.org/')
2018-01-21 19:58:02 +01:00
setup(name=name,
version=version,
description='Tryton module with products',
long_description=read('README.rst'),
author='Tryton',
author_email='bugs@tryton.org',
url='http://www.tryton.org/',
download_url=download_url,
project_urls={
"Bug Tracker": 'https://bugs.tryton.org/',
"Documentation": 'https://docs.tryton.org/',
"Forum": 'https://www.tryton.org/forum',
"Source Code": 'https://hg.tryton.org/modules/product',
},
keywords='tryton product',
2008-10-27 10:12:59 +01:00
package_dir={'trytond.modules.product': '.'},
packages=(
['trytond.modules.product'] +
['trytond.modules.product.%s' % p for p in find_packages()]
),
2008-06-23 20:55:06 +02:00
package_data={
2013-02-24 14:18:51 +01:00
'trytond.modules.product': (info.get('xml', [])
+ ['tryton.cfg', 'view/*.xml', 'locale/*.po', 'icons/*.svg',
'tests/*.rst']),
},
2008-06-23 20:55:06 +02:00
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
2011-09-29 23:24:10 +02:00
'Framework :: Tryton',
2008-06-23 20:55:06 +02:00
'Intended Audience :: Developers',
2008-10-03 15:35:27 +02:00
'Intended Audience :: Financial and Insurance Industry',
2008-06-23 20:55:06 +02:00
'Intended Audience :: Legal Industry',
2008-10-03 15:35:27 +02:00
'Intended Audience :: Manufacturing',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
2011-04-26 21:14:10 +02:00
'Natural Language :: Bulgarian',
2013-04-19 19:37:49 +02:00
'Natural Language :: Catalan',
2016-05-01 11:01:41 +02:00
'Natural Language :: Chinese (Simplified)',
2011-10-24 00:24:48 +02:00
'Natural Language :: Czech',
2011-04-26 21:14:10 +02:00
'Natural Language :: Dutch',
2008-06-23 20:55:06 +02:00
'Natural Language :: English',
2019-05-01 16:38:56 +02:00
'Natural Language :: Finnish',
2008-10-03 15:35:27 +02:00
'Natural Language :: French',
'Natural Language :: German',
2015-09-02 13:52:23 +02:00
'Natural Language :: Hungarian',
2015-07-09 15:42:29 +02:00
'Natural Language :: Italian',
2018-04-14 17:23:50 +02:00
'Natural Language :: Persian',
2016-11-25 23:53:19 +01:00
'Natural Language :: Polish',
2015-06-22 22:10:02 +02:00
'Natural Language :: Portuguese (Brazilian)',
2011-04-26 21:14:10 +02:00
'Natural Language :: Russian',
2013-10-18 21:50:11 +02:00
'Natural Language :: Slovenian',
2008-11-17 11:23:52 +01:00
'Natural Language :: Spanish',
2019-05-01 16:18:48 +02:00
'Natural Language :: Turkish',
2008-06-23 20:55:06 +02:00
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
2018-07-28 16:44:10 +02:00
'Programming Language :: Python :: 3.7',
2015-03-15 16:00:28 +01:00
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
2008-06-23 20:55:06 +02:00
'Topic :: Office/Business',
],
2008-09-24 15:52:16 +02:00
license='GPL-3',
python_requires='>=3.5',
2008-10-03 15:35:27 +02:00
install_requires=requires,
2018-01-21 19:58:02 +01:00
dependency_links=dependency_links,
2008-11-18 18:29:14 +01:00
zip_safe=False,
entry_points="""
[trytond.modules]
product = trytond.modules.product
""",
2010-03-12 17:49:38 +01:00
test_suite='tests',
test_loader='trytond.test_loader:Loader',
tests_require=tests_require,
)