diff options
author | Tim Dettmers <dettmers@cs.washington.edu> | 2021-10-07 08:39:38 -0700 |
---|---|---|
committer | Tim Dettmers <dettmers@cs.washington.edu> | 2021-10-07 08:39:38 -0700 |
commit | 7923c4a06615456353476a6e07e9296f0c13f776 (patch) | |
tree | fd8b2faabf7c46bdf46aaf7203c29f6fd83fcff6 /setup.py | |
parent | 7439924891496025edf60c9da6a782f362a50c70 (diff) |
Changed from testpypi to pypi. Release 0.0.24
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -13,19 +13,19 @@ def read(fname): setup( name = f"bitsandbytes-cuda{os.environ['CUDA_VERSION']}", - version = "0.0.23", + version = "0.0.24", author = "Tim Dettmers", - author_email = "tim.dettmers@gmail.com", - description = ("Numpy-like library for GPUs."), + author_email = "dettmers@cs.washington.edu", + description = ("8-bit optimizers and quantization routines."), license = "MIT", - keywords = "gpu", + keywords = "gpu optimizers optimization 8-bit quantization compression", url = "http://packages.python.org/bitsandbytes", packages=find_packages(), package_data={'': ['libbitsandbytes.so']}, long_description=read('README.md'), long_description_content_type = 'text/markdown', classifiers=[ - "Development Status :: 1 - Planning", + "Development Status :: 4 - Beta", 'Topic :: Scientific/Engineering :: Artificial Intelligence' ], ) |