File tree 1 file changed +5
-0
lines changed
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ def get_version_and_cmdclass(package_name):
23
23
24
24
version , cmdclass = get_version_and_cmdclass ("adaptive" )
25
25
26
+ with open ("README.rst" ) as f :
27
+ readme = f .read ()
26
28
27
29
install_requires = [
28
30
"scipy" ,
@@ -48,6 +50,8 @@ def get_version_and_cmdclass(package_name):
48
50
setup (
49
51
name = "adaptive" ,
50
52
description = "Adaptive parallel sampling of mathematical functions" ,
53
+ long_description = readme ,
54
+ long_description_content_type = "text/x-rst" ,
51
55
version = version ,
52
56
python_requires = ">=3.6" ,
53
57
url = "https://adaptive.readthedocs.io/" ,
@@ -59,6 +63,7 @@ def get_version_and_cmdclass(package_name):
59
63
"Intended Audience :: Science/Research" ,
60
64
"Programming Language :: Python :: 3.6" ,
61
65
"Programming Language :: Python :: 3.7" ,
66
+ "Programming Language :: Python :: 3.8" ,
62
67
],
63
68
packages = find_packages ("." ),
64
69
install_requires = install_requires ,
You can’t perform that action at this time.
0 commit comments