Skip to content

Commit 9b6e44b

Browse files
committed
setup data updates.
1 parent 14e3f3e commit 9b6e44b

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

setup.py

+34
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,50 @@ def package_files(directory):
1212
return paths
1313

1414

15+
with open("README.md") as f:
16+
long_description = f.read()
17+
18+
1519
setup(
1620
name="postgresql_wheel",
1721
version=versioneer.get_version(),
1822
cmdclass=versioneer.get_cmdclass(),
1923
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",
2027
author="Michel Pelletier",
2128
packages=["postgresql"],
2229
package_data={"postgresql": package_files("postgresql")},
2330
setup_requires=["cffi"],
2431
install_requires=["pytest"],
2532
cffi_modules=["postgresql/build.py:ffibuilder"],
2633
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+
],
2761
)

0 commit comments

Comments
 (0)