From 3cc62751674622954d0fe26987a87da7151ee322 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o?= Date: Thu, 13 Jan 2022 02:53:44 +0100 Subject: [PATCH] :pushpin: feat: add setup.py --- setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..d3fddc9 --- /dev/null +++ b/setup.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python3 + +from distutils.core import setup + +setup(name='TGV_Maximize', + version='1.0', + description='Python Distribution Utilities', + author='Divulgacheur', + author_email='github@theopeltier.me', + )