@@ -16,9 +16,6 @@ def read(*parts):
16
16
maintainer = "Filipe Fernandes"
17
17
authors = [u"André Palóczy" , "Arnaldo Russo" , "Filipe Fernandes" ]
18
18
19
- LICENSE = read ("LICENSE.txt" )
20
- long_description = "{}\n {}" .format (read ("README.rst" ), read ("CHANGES.txt" ))
21
-
22
19
# Dependencies.
23
20
hard = ["gsw" , "matplotlib" , "numpy" , "seawater" ]
24
21
soft = {"full" : ["cartopy" , "iris" , "netcdf4" , "pandas" , "scipy" ]}
@@ -29,8 +26,9 @@ def read(*parts):
29
26
cmdclass = versioneer .get_cmdclass (),
30
27
packages = find_packages (),
31
28
package_data = {"oceans" : ["colormaps/cmap_data/*.dat" ]},
32
- license = LICENSE ,
33
- long_description = long_description ,
29
+ license = "BSD-3-Clause" ,
30
+ long_description = f'{ read ("README.md" )} ' ,
31
+ long_description_content_type = "text/markdown" ,
34
32
classifiers = [
35
33
"Development Status :: 4 - Beta" ,
36
34
"Environment :: Console" ,
@@ -45,6 +43,7 @@ def read(*parts):
45
43
"Programming Language :: Python :: 3 :: Only" ,
46
44
"Programming Language :: Python :: 3.6" ,
47
45
"Programming Language :: Python :: 3.7" ,
46
+ "Programming Language :: Python :: 3.8" ,
48
47
],
49
48
description = "Misc functions for oceanographic data analysis" ,
50
49
author = authors ,
@@ -56,5 +55,6 @@ def read(*parts):
56
55
keywords = ["oceanography" , "data analysis" ],
57
56
extras_require = soft ,
58
57
install_requires = hard ,
58
+ python_requires = '>=3.6' ,
59
59
tests_require = ["pytest" ],
60
60
)
0 commit comments