-
-
Notifications
You must be signed in to change notification settings - Fork 793
chore: migrate config files to pyproject.toml
#1373
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
matthewdouglas
merged 9 commits into
bitsandbytes-foundation:main
from
SauravMaheshkar:saurav/configs
Dec 17, 2024
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
8e9ce44
chore: move configs to pyproject.toml
SauravMaheshkar 3f77dc9
fix: drop file from CI workflow
SauravMaheshkar b6b4156
feat: reorder pytest markers
SauravMaheshkar cbc3de1
chore: retain comments
SauravMaheshkar f6ec90c
chore(build): migrate build data to pyproject
SauravMaheshkar 0f86a1f
Apply suggestions from code review
matthewdouglas 3ee879a
chore: move configs to pyproject.toml
SauravMaheshkar 0dd6b5f
Apply suggestions from code review
matthewdouglas 22637a9
bump ruff
matthewdouglas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,94 @@ | ||
| [build-system] | ||
| requires = [ "setuptools", "wheel" ] | ||
| requires = ["setuptools >= 63.0.0"] | ||
| build-backend = "setuptools.build_meta" | ||
|
|
||
| [project] | ||
| name = "bitsandbytes" | ||
| dynamic = ["version"] | ||
| description = "k-bit optimizers and matrix multiplication routines." | ||
| authors = [{name="Tim Dettmers", email="[email protected]"}] | ||
| requires-python = ">=3.8" | ||
| readme = "README.md" | ||
| license = {file="LICENSE"} | ||
| keywords = [ | ||
| "gpu", | ||
| "optimizers", | ||
| "optimization", | ||
| "8-bit", | ||
| "quantization", | ||
| "compression" | ||
| ] | ||
| classifiers = [ | ||
| "Development Status :: 4 - Beta", | ||
| "License :: OSI Approved :: MIT License", | ||
| "Environment :: GPU :: NVIDIA CUDA :: 11", | ||
| "Environment :: GPU :: NVIDIA CUDA :: 12", | ||
| "Intended Audience :: Developers", | ||
| "Intended Audience :: Science/Research", | ||
| "Operating System :: POSIX :: Linux", | ||
| "Operating System :: MacOS", | ||
| "Operating System :: Microsoft :: Windows", | ||
| "Programming Language :: C++", | ||
| "Programming Language :: Python :: Implementation :: CPython", | ||
| "Programming Language :: Python :: 3.8", | ||
| "Programming Language :: Python :: 3.9", | ||
| "Programming Language :: Python :: 3.10", | ||
| "Programming Language :: Python :: 3.11", | ||
| "Programming Language :: Python :: 3.12", | ||
| "Topic :: Scientific/Engineering :: Artificial Intelligence" | ||
| ] | ||
| dependencies = [ | ||
| "torch>=1.11,!=1.12.0", | ||
| "numpy>=1.17" | ||
| ] | ||
|
|
||
| [project.optional-dependencies] | ||
| benchmark = ["pandas", "matplotlib"] | ||
| docs = ["hf-doc-builder==0.5.0"] | ||
| dev = [ | ||
| "bitsandbytes[test]", | ||
| "build>=1.0.0,<2", | ||
| "ruff==0.6.9", | ||
| "pre-commit>=3.5.0,<4", | ||
| "wheel>=0.42,<1" | ||
| ] | ||
| test = [ | ||
| "einops~=0.6.0", | ||
| "lion-pytorch==0.0.6", | ||
| "pytest~=7.4", | ||
| "scipy>=1.10.1,<2; python_version < '3.9'", | ||
| "scipy>=1.11.4,<2; python_version >= '3.9'", | ||
| "transformers>=4.30.1,<5" | ||
| ] | ||
| triton = ["triton~=2.0.0; sys_platform=='linux' and platform_machine=='x86_64'"] | ||
|
|
||
| [project.urls] | ||
| homepage = "https://github.com/TimDettmers/bitsandbytes" | ||
| changelog = "https://github.com/TimDettmers/bitsandbytes/blob/main/CHANGELOG.md" | ||
| docs = "https://huggingface.co/docs/bitsandbytes/main" | ||
| issues = "https://github.com/TimDettmers/bitsandbytes/issues" | ||
|
|
||
| [tool.setuptools] | ||
| package-data = { "*" = ["libbitsandbytes*.*"] } | ||
|
|
||
| [tool.setuptools.dynamic] | ||
| version = {attr = "bitsandbytes.__version__"} | ||
|
|
||
| [tool.pytest.ini_options] | ||
| addopts = "-rP" | ||
| # ; --cov=bitsandbytes | ||
| # ; # contexts: record which test ran which line; can be seen in html coverage report | ||
| # ; --cov-context=test | ||
| # ; --cov-report html | ||
| log_cli = true | ||
| log_cli_level = "INFO" | ||
| log_file = "logs/pytest.log" | ||
| markers = [ | ||
| "benchmark: mark test as a benchmark", | ||
| "deprecated: mark test as covering a deprecated feature", | ||
| "slow: mark test as slow", | ||
| ] | ||
|
|
||
| [tool.ruff] | ||
| src = [ | ||
| "bitsandbytes", | ||
|
|
||
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,48 +2,14 @@ | |
| # | ||
| # This source code is licensed under the MIT license found in the | ||
| # LICENSE file in the root directory of this source tree. | ||
| import glob | ||
| import os | ||
|
|
||
| from setuptools import find_packages, setup | ||
| from setuptools.dist import Distribution | ||
|
|
||
| libs = list(glob.glob("./bitsandbytes/libbitsandbytes*.*")) | ||
| libs = [os.path.basename(p) for p in libs] | ||
| print("libs:", libs) | ||
|
|
||
|
|
||
| def read(fname): | ||
| return open(os.path.join(os.path.dirname(__file__), fname), encoding="utf8").read() | ||
|
|
||
|
|
||
| # Tested with wheel v0.29.0 | ||
| class BinaryDistribution(Distribution): | ||
| def has_ext_modules(self): | ||
| return True | ||
|
|
||
|
|
||
| setup( | ||
| name="bitsandbytes", | ||
| version="0.45.1.dev0", | ||
| author="Tim Dettmers", | ||
| author_email="[email protected]", | ||
| description="k-bit optimizers and matrix multiplication routines.", | ||
| license="MIT", | ||
| keywords="gpu optimizers optimization 8-bit quantization compression", | ||
| url="https://github.com/bitsandbytes-foundation/bitsandbytes", | ||
| packages=find_packages(), | ||
| package_data={"": libs}, | ||
| install_requires=["torch", "numpy", "typing_extensions>=4.8.0"], | ||
| extras_require={ | ||
| "benchmark": ["pandas", "matplotlib"], | ||
| "test": ["scipy", "lion_pytorch"], | ||
| }, | ||
| long_description=read("README.md"), | ||
| long_description_content_type="text/markdown", | ||
| classifiers=[ | ||
| "Development Status :: 4 - Beta", | ||
| "Topic :: Scientific/Engineering :: Artificial Intelligence", | ||
| ], | ||
| distclass=BinaryDistribution, | ||
| ) | ||
| setup(version="0.45.1.dev0", packages=find_packages(), distclass=BinaryDistribution) | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.