Prepare setup

Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
Yohann D'ANELLO 2020-12-21 16:03:55 +01:00
parent 53d0eb0f27
commit bd6a8fc431
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
2 changed files with 42 additions and 0 deletions

39
setup.py Normal file
View File

@ -0,0 +1,39 @@
#!/usr/bin/env python3
# Copyright (C) 2020 by eichhornchen, ÿnérant
# SPDX-License-Identifier: GPL-3.0-or-later
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="squinnondation",
version="0.1",
author="eichhornchen, ÿnérant",
author_email="squinnondation@crans.org",
description="M1 networks project",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitlab.crans.org/ynerant/squinnondation",
packages=find_packages(),
license='GPLv3',
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Communications :: Chat :: Internet Relay Chat",
],
python_requires='>=3.6',
entry_points={
"console_scripts": [
"squinnondation = squinnondation.squinnondation:Squinnondation.main",
]
}
)

View File

@ -1,3 +1,6 @@
# Copyright (C) 2020 by eichhornchen, ÿnérant
# SPDX-License-Identifier: GPL-3.0-or-later
import sys
import unittest