11 lines
260 B
Python
11 lines
260 B
Python
#!/usr/bin/env python3
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='src',
|
|
packages=find_packages(),
|
|
version='0.0.0',
|
|
description='Environment for usage with the agent seminar at Uni Muenster 2024/25.',
|
|
author='Magnus Bender'
|
|
) |