44import os
55
66
7- AM_VERSION = "0.1.2 "
7+ AM_VERSION = "0.1.3 "
88
99
1010with 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
3333setuptools .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