Skip to content
This repository was archived by the owner on Jun 27, 2025. It is now read-only.

Commit 4747222

Browse files
committed
0.1.3 RC 1
1 parent 164c27a commit 4747222

File tree

2 files changed

+27
-7
lines changed

2 files changed

+27
-7
lines changed

README.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@ ArrayMap requires the following:
3636
What is New in ArrayMap
3737
-------------------------
3838

39+
0.1.3
40+
........
41+
42+
Updated ``classifiers``, ``install_requires`` with ``setuptools``.
43+
44+
3945
0.1.2
4046
........
4147

setup.py

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import os
55

66

7-
AM_VERSION = "0.1.2"
7+
AM_VERSION = "0.1.3"
88

99

1010
with open("README.rst") as file:
@@ -26,19 +26,33 @@ def get_ext_dir(*components: tp.Iterable[str]) -> tp.Sequence[str]:
2626
include_dirs=get_ext_dir("numpy", "core", "include"),
2727
library_dirs=get_ext_dir("numpy", "core", "lib"),
2828
define_macros=[("AM_VERSION", AM_VERSION)],
29-
libraries=["npymath"], # not including mlib at this time
29+
libraries=["npymath"],
3030
)
3131

3232

3333
setuptools.setup(
34-
author="Christopher Ariza, Brandt Bucher",
34+
name="arraymap",
3535
version=AM_VERSION,
3636
description="Dictionary-like lookup from NumPy array values to their integer positions",
37-
ext_modules=[extension],
38-
license="MIT",
3937
long_description=LONG_DESCRIPTION,
40-
# long_description_content_type="text/markdown",
41-
name="arraymap",
4238
python_requires=">=3.7.0",
39+
install_requires=["numpy>=1.18.5"],
4340
url="https://github.com/static-frame/arraymap",
41+
author="Christopher Ariza, Brandt Bucher",
42+
license="MIT",
43+
classifiers=[
44+
"Development Status :: 5 - Production/Stable",
45+
"Intended Audience :: Developers",
46+
"Topic :: Software Development",
47+
"License :: OSI Approved :: MIT License",
48+
"Operating System :: MacOS :: MacOS X",
49+
"Operating System :: Microsoft :: Windows",
50+
"Operating System :: POSIX",
51+
"Programming Language :: Python :: 3.7",
52+
"Programming Language :: Python :: 3.8",
53+
"Programming Language :: Python :: 3.9",
54+
"Programming Language :: Python :: 3.10",
55+
"Programming Language :: Python :: 3.11",
56+
],
57+
ext_modules=[extension],
4458
)

0 commit comments

Comments
 (0)