add setup.py
This commit is contained in:
parent
def5cd11ec
commit
5a365a902b
24
setup.py
Normal file
24
setup.py
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name = 'pcomon',
|
||||||
|
version = '1.0.0',
|
||||||
|
author = 'stupidcomputer',
|
||||||
|
author_email = 'ryan@beepboop.systems',
|
||||||
|
url = 'https://git.beepboop.systems/stupidcomputer/pcomon',
|
||||||
|
description = 'monitor planning center online for new messages',
|
||||||
|
license = 'GPLv3',
|
||||||
|
entry_points = {
|
||||||
|
'console_scripts': [
|
||||||
|
'pcomon = pcomon.entry:entry'
|
||||||
|
]
|
||||||
|
},
|
||||||
|
packages=["pcomon"],
|
||||||
|
classifiers = (
|
||||||
|
"Programming Language :: Python :: 3",
|
||||||
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
||||||
|
"Operating System :: POSIX :: Linux",
|
||||||
|
"Environment :: Console"
|
||||||
|
),
|
||||||
|
zip_safe = False
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user