From 1202fa987edf885ab69c13e6840b3c99480a10c9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ma=C3=ABl=20Madon?= <mael.madon@irit.fr>
Date: Thu, 13 Apr 2023 17:28:15 +0200
Subject: [PATCH] added package file

---
 .gitignore     |  1 +
 pyproject.toml | 19 +++++++++++++++++++
 2 files changed, 20 insertions(+)
 create mode 100644 pyproject.toml

diff --git a/.gitignore b/.gitignore
index 9284d3b..9646803 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,7 @@
 __pycache__
 .vscode
 .coverage
+dist
 out/*
 
 workloads/*
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..8b72732
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,19 @@
+[build-system]
+build-backend = "flit_core.buildapi"
+requires = ["flit_core>=3.4"]
+
+[project]
+name = "swf2userSessions"
+version = "0.0.1"
+authors = [
+  { name="Maƫl Madon", email="mael.madon@irit.fr" },
+]
+description = "Script to decompose a workload trace into user sessions."
+readme = "README.md"
+requires-python = ">=3.7"
+classifiers = [
+    "Programming Language :: Python :: 3",
+    "Operating System :: OS Independent",
+    "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
+]
+
-- 
GitLab