File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11from setuptools import setup
22
3- with open ("README.md" , "r" ) as fh :
3+ with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
44 long_description = fh .read ()
55
66setup (
77 name = "numpyencoder" ,
8- version = "0.2 .0" ,
8+ version = "0.3 .0" ,
99 author = "Hunter M. Allen" ,
1010 author_email = "allenhm@gmail.com" ,
1111 license = "MIT" ,
12- # packages=find_packages(),
1312 packages = ["numpyencoder" ],
1413 install_requires = ["numpy>=1.14.3" ],
1514 description = "Python JSON encoder for handling Numpy data types." ,
1615 long_description = long_description ,
1716 long_description_content_type = "text/markdown" ,
1817 url = "https://github.com/hmallen/numpyencoder" ,
1918 keywords = ["numpy" , "json" , "encoder" ],
20- classifiers = (
19+ classifiers = [
2120 "Programming Language :: Python :: 3" ,
2221 "License :: OSI Approved :: MIT License" ,
2322 "Operating System :: OS Independent" ,
24- ),
23+ ],
24+ python_requires = ">=3.6" ,
2525)
You can’t perform that action at this time.
0 commit comments