Development Artifact Cleanup: ✅ BROTHER_NODE REORGANIZATION: Moved development test node to appropriate location - dev/test-nodes/brother_node/: Moved from root directory for better organization - Contains development configuration, test logs, and test chain data - No impact on production systems - purely development/testing artifact ✅ DEVELOPMENT ARTIFACTS IDENTIFIED: - Chain ID: aitbc-brother-chain (test/development chain) - Ports: 8010 (P2P) and 8011 (RPC) - different from production - Environment: .env file with test configuration - Logs: rpc.log and node.log from development testing session (March 15, 2026) ✅ ROOT DIRECTORY CLEANUP: Removed development clutter from production directory - brother_node/ moved to dev/test-nodes/brother_node/ - Root directory now contains only production-ready components - Development artifacts properly organized in dev/ subdirectory DIRECTORY STRUCTURE IMPROVEMENT: 📁 dev/test-nodes/: Development and testing node configurations 🏗️ Root Directory: Clean production structure with only essential components 🧪 Development Isolation: Test environments separated from production BENEFITS: ✅ Clean Production Directory: No development artifacts in root ✅ Better Organization: Development nodes grouped in dev/ subdirectory ✅ Clear Separation: Production vs development environments clearly distinguished ✅ Maintainability: Easier to identify and manage development components RESULT: Successfully moved brother_node development artifact to dev/test-nodes/ subdirectory, cleaning up the root directory while preserving development testing environment for future use.
69 lines
2.5 KiB
Plaintext
Executable File
69 lines
2.5 KiB
Plaintext
Executable File
Metadata-Version: 2.4
|
|
Name: cffi
|
|
Version: 2.0.0
|
|
Summary: Foreign Function Interface for Python calling C code.
|
|
Author: Armin Rigo, Maciej Fijalkowski
|
|
Maintainer: Matt Davis, Matt Clay, Matti Picus
|
|
License-Expression: MIT
|
|
Project-URL: Documentation, https://cffi.readthedocs.io/
|
|
Project-URL: Changelog, https://cffi.readthedocs.io/en/latest/whatsnew.html
|
|
Project-URL: Downloads, https://github.com/python-cffi/cffi/releases
|
|
Project-URL: Contact, https://groups.google.com/forum/#!forum/python-cffi
|
|
Project-URL: Source Code, https://github.com/python-cffi/cffi
|
|
Project-URL: Issue Tracker, https://github.com/python-cffi/cffi/issues
|
|
Classifier: Programming Language :: Python
|
|
Classifier: Programming Language :: Python :: 3
|
|
Classifier: Programming Language :: Python :: 3.9
|
|
Classifier: Programming Language :: Python :: 3.10
|
|
Classifier: Programming Language :: Python :: 3.11
|
|
Classifier: Programming Language :: Python :: 3.12
|
|
Classifier: Programming Language :: Python :: 3.13
|
|
Classifier: Programming Language :: Python :: 3.14
|
|
Classifier: Programming Language :: Python :: Free Threading :: 2 - Beta
|
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
Requires-Python: >=3.9
|
|
Description-Content-Type: text/markdown
|
|
License-File: LICENSE
|
|
License-File: AUTHORS
|
|
Requires-Dist: pycparser; implementation_name != "PyPy"
|
|
Dynamic: license-file
|
|
|
|
[](https://github.com/python-cffi/cffi/actions/workflows/ci.yaml?query=branch%3Amain++)
|
|
[](https://pypi.org/project/cffi)
|
|
[][Documentation]
|
|
|
|
|
|
CFFI
|
|
====
|
|
|
|
Foreign Function Interface for Python calling C code.
|
|
|
|
Please see the [Documentation] or uncompiled in the `doc/` subdirectory.
|
|
|
|
Download
|
|
--------
|
|
|
|
[Download page](https://github.com/python-cffi/cffi/releases)
|
|
|
|
Source Code
|
|
-----------
|
|
|
|
Source code is publicly available on
|
|
[GitHub](https://github.com/python-cffi/cffi).
|
|
|
|
Contact
|
|
-------
|
|
|
|
[Mailing list](https://groups.google.com/forum/#!forum/python-cffi)
|
|
|
|
Testing/development tips
|
|
------------------------
|
|
|
|
After `git clone` or `wget && tar`, we will get a directory called `cffi` or `cffi-x.x.x`. we call it `repo-directory`. To run tests under CPython, run the following in the `repo-directory`:
|
|
|
|
pip install pytest
|
|
pip install -e . # editable install of CFFI for local development
|
|
pytest src/c/ testing/
|
|
|
|
[Documentation]: http://cffi.readthedocs.org/
|