add a setup.py
This commit is contained in:
parent
a1b8e032e9
commit
fb217dfa45
18
setup.py
Normal file
18
setup.py
Normal 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
|
||||
)
|
Loading…
Reference in New Issue
Block a user