From 56701d8570cb1bc4122a28615cbc156fca567fbb Mon Sep 17 00:00:00 2001 From: JenChieh Date: Tue, 17 Dec 2024 16:33:24 -0800 Subject: [PATCH] add project metadata --- setup.py | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 785f487..8dd0ae3 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,17 @@ -from setuptools import setup, find_packages +from setuptools import setup setup( name="the-flx", - version="0.1.0", - packages=find_packages(), + description="Rewrite emacs-flx in Python", + version="0.1.1", + url="https://github.com/the-flx/flx.py", + project_urls={ + "Source Code": "https://github.com/the-flx/flx.py", + }, + author="Jen-Chieh Shen", + author_email="jcs090218@gmail.com", + license="MIT", + python_requires=">=3.9", + packages=["flx"], install_requires= [], )