-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 1.13 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# pip install -U -r requirements-dev.txt --break-system-packages; pip uninstall collegamento -y --break-system-packages; pip install . --break-system-packages --no-build-isolation; python3 -m pytest .
from setuptools import setup
with open("README.md", "r") as file:
long_description = file.read()
setup(
name="collegamento",
version="0.3.0",
description="Collegamento provides an easy to use Client/Server IPC backend",
author="Moosems",
author_email="[email protected]",
url="https://github.com/salve-org/collegamento",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=open("requirements.txt", "r+")
.read()
.splitlines(keepends=False),
python_requires=">=3.11",
license="MIT license",
classifiers=[
# "Development Status :: 3 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Typing :: Typed",
],
packages=["collegamento", "collegamento.client_server"],
)