From c0aa757998500601deb28c5216db1c08c562638d Mon Sep 17 00:00:00 2001 From: percyjw-2 <joris.wachsmuth@gmx.de> Date: Fri, 24 Jun 2022 17:25:01 +0200 Subject: [PATCH] Added Initial Project --- .gitignore | 2 ++ setup.py | 23 +++++++++++++++++++++++ swarm/__init__.py | 6 ++++++ swarm/tests/__init__.py | 0 4 files changed, 31 insertions(+) create mode 100644 .gitignore create mode 100644 setup.py create mode 100644 swarm/__init__.py create mode 100644 swarm/tests/__init__.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6b75623 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.idea +venv \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..ed1eef3 --- /dev/null +++ b/setup.py @@ -0,0 +1,23 @@ +from setuptools import setup, find_packages + +setup( + name='swarm', + version='0.0.1', + description='', + url='https://gitlab.ub.uni-bielefeld.de/jwachsmuth/swarm', + author='Joris Wachsmuth', + author_email='jwachsmuth@techfak.de', + license='GNU LGPLv3', + packages=find_packages( + where='.', + include=['swarm*'], + exclude=['swarm.tests'] + ), + install_requires=[], + classifiers=[ + 'Development Status :: 1 - Planning', + 'Operating System :: POSIX :: Linux', + 'Operating System :: Microsoft :: Windows', + 'Programming Language :: Python :: 3.10' + ] +) diff --git a/swarm/__init__.py b/swarm/__init__.py new file mode 100644 index 0000000..8231946 --- /dev/null +++ b/swarm/__init__.py @@ -0,0 +1,6 @@ +""" +Python library +""" + +__version__ = "0.0.1" +__author__ = 'Joris Wachsmuth' diff --git a/swarm/tests/__init__.py b/swarm/tests/__init__.py new file mode 100644 index 0000000..e69de29 -- GitLab