-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·49 lines (45 loc) · 1.68 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python3
#
# dewi-dataclass: implemented as Node (dict tree)
# Copyright 2012-2022 Laszlo Attila Toth
# Distributed under the terms of the Apache License, Version 2.0
import sys
if sys.hexversion < 0x030a0000:
raise RuntimeError("Required python version: 3.10 or newer (current: %s)" % sys.version)
from setuptools import setup, find_packages
setup(
name="dewi-dataclass",
description="DEWI DataClass: a (mutable) data class / config object implementation",
license="Apache",
version="1.0.0",
author="Laszlo Attila Toth",
author_email="[email protected]",
maintainer="Laszlo Attila Toth",
maintainer_email="[email protected]",
keywords='dataclass,config,configtree,node',
url="https://github.com/LA-Toth/dewi-dataclass",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
],
zip_safe=True,
use_2to3=False,
python_requires='>=3.10',
packages=find_packages(exclude=['*tests*']),
install_requires=[
]
)