PlantBrowseOrchard
Connecting...

Plant ideas. Watch them grow.

Plant ideas. Watch them grow.

Whitepaper·How to buy·Privacy·Terms
DexPump

© 2026 PNL

·

No. 139

·

built on Solana

back to the code overview

github.com/fthrvi/nakshatra

setup.cfg

69 lines · 2.2 kb · markup

github raw
1[metadata]
2name = petals
3version = attr: petals.__version__
4author = Petals Developers
5author_email = petals-devs@googlegroups.com
6description = Easy way to efficiently run 100B+ language models without high-end GPUs
7long_description = file: README.md
8long_description_content_type = text/markdown
9url = https://github.com/bigscience-workshop/petals
10project_urls =
11 Bug Tracker = https://github.com/bigscience-workshop/petals/issues
12classifiers =
13 Development Status :: 4 - Beta
14 Intended Audience :: Developers
15 Intended Audience :: Science/Research
16 License :: OSI Approved :: MIT License
17 Programming Language :: Python :: 3
18 Programming Language :: Python :: 3.8
19 Programming Language :: Python :: 3.9
20 Programming Language :: Python :: 3.10
21 Programming Language :: Python :: 3.11
22 Topic :: Scientific/Engineering
23 Topic :: Scientific/Engineering :: Mathematics
24 Topic :: Scientific/Engineering :: Artificial Intelligence
25 Topic :: Software Development
26 Topic :: Software Development :: Libraries
27 Topic :: Software Development :: Libraries :: Python Modules
28
29[options]
30package_dir =
31 = src
32packages = find:
33python_requires = >=3.8
34install_requires =
35 torch>=1.12
36 bitsandbytes==0.41.1
37 accelerate>=0.27.2
38 huggingface-hub>=0.11.1,<1.0.0
39 tokenizers>=0.13.3
40 transformers==4.43.1 # if you change this, please also change version assert in petals/__init__.py
41 speedtest-cli==2.1.3
42 hivemind @ git+https://github.com/learning-at-home/hivemind.git@213bff98a62accb91f254e2afdccbf1d69ebdea9
43 tensor_parallel==1.0.23
44 humanfriendly
45 async-timeout>=4.0.2
46 cpufeature>=0.2.0; platform_machine == "x86_64"
47 packaging>=20.9
48 sentencepiece>=0.1.99
49 peft==0.8.2
50 safetensors>=0.3.1
51 Dijkstar>=2.6.0
52 numpy<2
53 # Phase F4 (worker hardening sprint, 2026-05-19): Ed25519 + TLS
54 # primitives for the Sthambha pillar handshake. Pinned range matches
55 # Sthambha's pyproject.toml so the two repos coexist in one env.
56 cryptography>=41.0,<46
57
58[options.extras_require]
59dev =
60 pytest==6.2.5
61 pytest-forked
62 pytest-asyncio==0.16.0
63 black==22.3.0
64 isort==5.10.1
65 psutil
66
67[options.packages.find]
68where = src
69