@@ -12,16 +12,50 @@ def package_files(directory):
12
12
return paths
13
13
14
14
15
+ with open ("README.md" ) as f :
16
+ long_description = f .read ()
17
+
18
+
15
19
setup (
16
20
name = "postgresql_wheel" ,
17
21
version = versioneer .get_version (),
18
22
cmdclass = versioneer .get_cmdclass (),
19
23
description = "PostgreSQL Server compiled into a Python Wheel." ,
24
+ long_description = long_description ,
25
+ long_description_content_type = "text/markdown" ,
26
+ url = "https://github.com/michelp/postgresql-wheel" ,
20
27
author = "Michel Pelletier" ,
21
28
packages = ["postgresql" ],
22
29
package_data = {"postgresql" : package_files ("postgresql" )},
23
30
setup_requires = ["cffi" ],
24
31
install_requires = ["pytest" ],
25
32
cffi_modules = ["postgresql/build.py:ffibuilder" ],
26
33
python_requires = ">=3.7,<3.10" ,
34
+ license = "Apache License 2.0" ,
35
+ keywords = [
36
+ "graphblas" ,
37
+ "graph" ,
38
+ "sparse" ,
39
+ "matrix" ,
40
+ "suitesparse" ,
41
+ "hypersparse" ,
42
+ "hypergraph" ,
43
+ ],
44
+ classifiers = [
45
+ "Development Status :: 4 - Beta" ,
46
+ "License :: OSI Approved :: Apache Software License" ,
47
+ "Operating System :: MacOS :: MacOS X" ,
48
+ "Operating System :: POSIX :: Linux" ,
49
+ "Operating System :: Microsoft :: Windows" ,
50
+ "Programming Language :: Python" ,
51
+ "Programming Language :: Python :: 3" ,
52
+ "Programming Language :: Python :: 3.7" ,
53
+ "Programming Language :: Python :: 3.8" ,
54
+ "Programming Language :: Python :: 3.9" ,
55
+ "Programming Language :: Python :: 3 :: Only" ,
56
+ "Intended Audience :: Developers" ,
57
+ "Intended Audience :: Science/Research" ,
58
+ "Topic :: Scientific/Engineering" ,
59
+ "Topic :: Scientific/Engineering :: Mathematics" ,
60
+ ],
27
61
)
0 commit comments