From b19e13fbace0fffe712da44b512f85b32c58e5a3 Mon Sep 17 00:00:00 2001 From: Dwayne Pryce Date: Mon, 2 Nov 2020 11:17:03 -0800 Subject: [PATCH] I used some python core metadata keys that I expected maturin to make use of, but it would not. So I'm using what it will and hoping the rest are pulled from the Cargo.toml instead. --- packages/pyo3/Cargo.toml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/packages/pyo3/Cargo.toml b/packages/pyo3/Cargo.toml index 55f7d61..bcf7bea 100644 --- a/packages/pyo3/Cargo.toml +++ b/packages/pyo3/Cargo.toml @@ -4,15 +4,11 @@ version = "0.1.0" authors = ["dwpryce@microsoft.com"] edition = "2018" license = "MIT" -description = "" +description = "This module exists to provide a python interface to native code for Windows, MacOS, and Linux from Python 3.6 to 3.9. Currently, it provides a native implementation of the Leiden global partitioning algorithm. It is advised you use the API through graspologic, as pythonic syntactic sugar has been added to make it more ergonomic for use." [package.metadata.maturin] -author = "Dwayne Pryce" -author-email = "dwpryce@microsoft.com" -summary = "A native companion module for the graspologic project" -description = "This module exists to provide a python interface to native code for Windows, MacOS, and Linux from Python 3.6 to 3.9. Currently, it provides a native implementation of the Leiden global partitioning algorithm. It is advised you use the API through graspologic, as pythonic syntactic sugar has been added to make it more ergonomic for use." -home-page = "https://github.com/microsoft/graspologic-native" -license = "MIT" +maintainer = "Dwayne Pryce" +maintainer-email = "dwpryce@microsoft.com" requires-python = ">=3.6,<=3.9" project-url = ["https://github.com/microsoft/graspologic-native", "https://github.com/microsoft/graspologic"] classifier = ["Development Status :: 3 - Alpha", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Topic :: Scientific/Engineering :: Mathematics"]