-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (38 loc) · 1.21 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
import os
import sys
from setuptools import find_packages, setup
import versioneer
def readme():
with open("README.md") as f:
return f.read()
setup(
name="pshmem",
provides="pshmem",
version=versioneer.get_version(),
description="Parallel shared memory and locking with MPI",
long_description=readme(),
long_description_content_type="text/markdown",
author="Theodore Kisner",
author_email="work@theodorekisner.com",
url="https://github.com/tskisner/pshmem",
packages=["pshmem"],
scripts=None,
license="BSD",
python_requires=">=3.8.0",
install_requires=["numpy"],
extras_require={"mpi": ["mpi4py>=3.0"]},
cmdclass=versioneer.get_cmdclass(),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
],
)