4
4
import os
5
5
6
6
7
- AM_VERSION = "0.1.2 "
7
+ AM_VERSION = "0.1.3 "
8
8
9
9
10
10
with open ("README.rst" ) as file :
@@ -26,19 +26,33 @@ def get_ext_dir(*components: tp.Iterable[str]) -> tp.Sequence[str]:
26
26
include_dirs = get_ext_dir ("numpy" , "core" , "include" ),
27
27
library_dirs = get_ext_dir ("numpy" , "core" , "lib" ),
28
28
define_macros = [("AM_VERSION" , AM_VERSION )],
29
- libraries = ["npymath" ], # not including mlib at this time
29
+ libraries = ["npymath" ],
30
30
)
31
31
32
32
33
33
setuptools .setup (
34
- author = "Christopher Ariza, Brandt Bucher " ,
34
+ name = "arraymap " ,
35
35
version = AM_VERSION ,
36
36
description = "Dictionary-like lookup from NumPy array values to their integer positions" ,
37
- ext_modules = [extension ],
38
- license = "MIT" ,
39
37
long_description = LONG_DESCRIPTION ,
40
- # long_description_content_type="text/markdown",
41
- name = "arraymap" ,
42
38
python_requires = ">=3.7.0" ,
39
+ install_requires = ["numpy>=1.18.5" ],
43
40
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 ],
44
58
)
0 commit comments