From 9060ad7bd6d337fd91627d5157e9e9e3b8f4f158 Mon Sep 17 00:00:00 2001 From: Jordan Welsman Date: Wed, 18 Jan 2023 20:17:16 -0800 Subject: [PATCH] build: Incremented version number & updated setup file for Parameter Update. --- setup.py | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index e090a01..8755b6d 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup # Arguments -version = "0.2.2" +version = "0.3.0" python_version = ">=3.10" # Long description from README.md @@ -19,21 +19,28 @@ author = 'Jordan Welsman', author_email = 'welsman@lbl.gov', url = 'https://github.com/JordanWelsman/nexport/', - py_modules = ["__init__", "colors", "utils"], + py_modules = ["__init__", "calculators", "colors", "models", "utils"], classifiers = [ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'Intended Audience :: Education', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: BSD License', + 'Natural Language :: English', 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.10', - 'Topic :: Scientific/Engineering :: Artificial Intelligence' + 'Programming Language :: Python :: 3.11', + 'Topic :: Scientific/Engineering :: Artificial Intelligence', + 'Topic :: Software Development :: Libraries :: Python Modules', + 'Topic :: Utilities' ], package_dir = {'': 'nexport'}, install_requires = [ - "torch", - "jutils" + "jutils", + "numpy", + "torch" ], extras_require = { "dev": [