mirror of
https://gitlab.com/d3tn/ud3tn.git
synced 2026-08-16 13:01:06 +02:00
protobuf==4.21.12 requires python>=3.7[^1]. To resolve the version conflict between μD3TN and the protobuf package, the required minimum Python version is set to >=3.7. [^1]: https://pypi.org/project/protobuf/4.21.12/ Closes: #153 Signed-off-by: Maximilian Nitsch <maximilian.nitsch@d3tn.com>
26 lines
674 B
Python
26 lines
674 B
Python
#!/usr/bin/env python
|
|
# SPDX-License-Identifier: BSD-3-Clause OR Apache-2.0
|
|
|
|
import setuptools
|
|
|
|
with open('README.md', 'r') as file:
|
|
long_description = file.read()
|
|
|
|
setuptools.setup(
|
|
name='ud3tn-utils',
|
|
version='0.12.0',
|
|
author='D3TN GmbH',
|
|
author_email='contact@d3tn.com',
|
|
description='μD3TN Utilities',
|
|
long_description=long_description,
|
|
long_description_content_type='text/markdown',
|
|
url='https://gitlab.com/d3tn/ud3tn',
|
|
packages=[
|
|
'ud3tn_utils',
|
|
'ud3tn_utils.aap',
|
|
'ud3tn_utils.aap2',
|
|
'ud3tn_utils.aap2.generated',
|
|
],
|
|
install_requires=['protobuf==4.21.12'],
|
|
python_requires='>=3.7',
|
|
)
|