add a setup.py

This commit is contained in:
stupidcomputer 2025-01-14 06:02:39 -06:00
parent a1b8e032e9
commit fb217dfa45

18
setup.py Normal file
View File

@ -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
)