-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
46 lines (42 loc) · 1.67 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
37
38
39
40
41
42
43
44
45
46
# -*- coding: utf-8 -*-
# Copyright 2012-2023 Dr. Jan-Philip Gehrcke. See LICENSE file for details.
import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
gipcversion = re.search(
'^__version__\s*=\s*"(.*)"', open("gipc/__init__.py").read(), re.M
).group(1)
assert gipcversion
setup(
name="gipc",
packages=["gipc"],
version=gipcversion,
description="gevent-cooperative child processes and inter-process communication.",
long_description=open("README.rst", "rb").read().decode("utf-8"),
long_description_content_type="text/x-rst",
author="Dr. Jan-Philip Gehrcke",
author_email="[email protected]",
url="https://gehrcke.de/gipc",
keywords=["gevent", "multiprocessing", "ipc", "child processes"],
platforms=["POSIX", "Windows"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Hardware :: Symmetric Multi-processing",
"Intended Audience :: Developers",
],
install_requires=("gevent>=1.5,<=24.11"),
)