-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.15 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
32
33
34
35
36
from setuptools import setup
import pathlib
from src.socketsc.version import version
ROOT_DIR = pathlib.Path(__file__).parent
packages = ['socketsc']
long_description = (ROOT_DIR / "README.md").read_text()
setup(
name="socketsc",
version=version,
description="Simple socket library for client/server with events management.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="server client socket event tcp",
license="MIT",
author="Dan5py",
python_requires=">=3.8.0",
url="https://gitlab.com/dan5py/socketsc",
package_dir={"": "src"},
include_package_data=True,
requires=['wheel'],
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)