From cd520cf094272a86f5a107d48133b1a1688c71f9 Mon Sep 17 00:00:00 2001 From: Julieanna Bacon Date: Tue, 12 Mar 2024 12:05:20 -0400 Subject: [PATCH] installation: Update authors field and tie version and proj description to pixi.toml file for single source of truth --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 4e5ddae..c83576c 100644 --- a/setup.py +++ b/setup.py @@ -26,14 +26,14 @@ setup( name="icedyno", - version="0.1.0", - description="", - author="", + version=pixi_config["project"]["version"], + description=pixi_config["project"]["description"], + author="Julieanna Bacon, Soolu Thomas, Brendon Gory, Matthew Thanos, Ruchi Asthana", packages=find_packages(), install_requires=install_requires, classifiers=[ "Programming Language :: Python :: 3", "Operating System :: OS Independent", ], - python_requires=">=3.6", + python_requires=">=3.8", )