From fb217dfa45ff4a5e1ad4980fb9e9c9b856aef879 Mon Sep 17 00:00:00 2001 From: stupidcomputer Date: Tue, 14 Jan 2025 06:02:39 -0600 Subject: [PATCH] add a setup.py --- setup.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f510ad8 --- /dev/null +++ b/setup.py @@ -0,0 +1,18 @@ +from setuptools import setup, find_packages + +setup( + name = 'flasktrack', + version = '1.0.0', + author = 'stupidcomputer', + author_email = 'ryan@beepboop.systems', + url = 'https://git.beepboop.systems/stupidcomputer/flasktrack', + description = 'simple phonetracking thing', + license = 'GPLv3', + packages=["flasktrack"], + classifiers = ( + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", + "Operating System :: POSIX :: Linux", + ), + zip_safe = False +)