placeholder

This commit is contained in:
Swee 2024-10-16 21:52:17 -07:00
parent 519cd66e48
commit a1681a9168
2 changed files with 22 additions and 0 deletions

1
scparseirc/__init__.py Normal file
View file

@ -0,0 +1 @@
import socket

21
setup.py Normal file
View file

@ -0,0 +1,21 @@
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",
]
)