Platform-IRC/setup.py

22 lines
617 B
Python
Raw Permalink Normal View History

2024-10-16 21:52:17 -07:00
from setuptools import setup, find_packages
VERSION = '1.0.0'
DESCRIPTION = 'IRC parser for the Sugarcane IM family.'
LONG_DESCRIPTION = open('README.md').read()
setup(
name="scparseirc",
version=VERSION,
author="SweeZero",
author_email="swee@mailfence.com",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=[],
classifiers= [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
)