2024-05-12 13:23:26 -05:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name = 'pystatus',
|
|
|
|
version = '1.0.0',
|
|
|
|
author = 'stupidcomputer',
|
|
|
|
author_email = 'ryan@beepboop.systems',
|
|
|
|
url = 'https://git.beepboop.systems/stupidcomputer/dot_testing',
|
|
|
|
description = 'simple statusbar content program',
|
2024-06-07 17:52:49 -05:00
|
|
|
license = 'GPLv3',
|
2024-05-12 13:23:26 -05:00
|
|
|
entry_points = {
|
|
|
|
'console_scripts': [
|
|
|
|
'statusbar = statusbar.statusbar:main'
|
|
|
|
]
|
|
|
|
},
|
|
|
|
classifiers = (
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Environment :: Console"
|
|
|
|
),
|
|
|
|
zip_safe = False
|
|
|
|
)
|