placeholder
This commit is contained in:
parent
519cd66e48
commit
a1681a9168
2 changed files with 22 additions and 0 deletions
1
scparseirc/__init__.py
Normal file
1
scparseirc/__init__.py
Normal file
|
@ -0,0 +1 @@
|
|||
import socket
|
21
setup.py
Normal file
21
setup.py
Normal 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",
|
||||
]
|
||||
)
|
Loading…
Add table
Reference in a new issue