From 38fd5207b42d1f636a1d24c7c5127f3ffd9f3e6f Mon Sep 17 00:00:00 2001 From: GDeLaurentis Date: Tue, 2 Jan 2024 16:14:45 +0000 Subject: [PATCH] Tweaks in setup.py --- setup.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8b76bad..f00bbf6 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,19 @@ author='Giuseppe De Laurentis', author_email='g.dl@hotmail.it', url='https://github.com/GDeLaurentis/pyadic', + download_url='https://github.com/GDeLaurentis/pyadic/archive/v0.2.0.tar.gz', + keywords=['p-adic numbers', 'finite-fields', 'rational reconstruction'], packages=find_packages(), include_package_data=True, - install_requires=['numpy', 'sympy'], + install_requires=[ + 'numpy', + 'sympy', + ], + classifiers=[ + 'Development Status :: 4 - Beta', + 'Intended Audience :: Science/Research', + 'Topic :: Scientific/Engineering :: Physics', + 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', + 'Programming Language :: Python :: 3.9', + ], )