Optim. Repo Structure

This commit is contained in:
2024-10-30 15:32:08 +01:00
parent 414c18ef08
commit 53bc4ac219
14 changed files with 31 additions and 22 deletions

19
utils/setup.py Normal file
View File

@ -0,0 +1,19 @@
# Agenten Plattform
#
# (c) 2024 Magnus Bender
# Institute of Humanities-Centered Artificial Intelligence (CHAI)
# Universitaet Hamburg
# https://www.chai.uni-hamburg.de/~bender
#
# source code released under the terms of GNU Public License Version 3
# https://www.gnu.org/licenses/gpl-3.0.txt
from setuptools import find_packages, setup
setup(
name='ums',
packages=find_packages(),
version='0.0.0',
description='UMS-Agenten',
author='Magnus Bender',
)