Feature: Implementing setup.py for this project
This commit is contained in:
parent
87048e5965
commit
bd4df3b08f
23
setup.py
Normal file
23
setup.py
Normal file
@ -0,0 +1,23 @@
|
||||
import os
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
with open(os.path.join(os.path.dirname(__file__), "README.md")) as readme:
|
||||
README = readme.read()
|
||||
|
||||
setuptools.setup(
|
||||
name="xinued_irc_lib",
|
||||
version="0.0.1",
|
||||
author="Ilgrim Hellwind",
|
||||
author_email="ilgrim@xinu.me",
|
||||
description="Toy IRC lib",
|
||||
long_description="Toy IRC lib for general purpose",
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://git.tr4ck.net/Ilgrim/xinued-irc-lib",
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent",
|
||||
],
|
||||
python_requires='>=3.8',
|
||||
packages=["xinued_irc_lib"]
|
||||
)
|
0
xinued_irc_lib/__init__.py
Normal file
0
xinued_irc_lib/__init__.py
Normal file
Loading…
Reference in New Issue
Block a user