open source is social v-it.org
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Set up Python project structure with pyproject.toml

- Add pyproject.toml with project metadata and dependencies
- Rename plc-register.py to plc_register.py for Python module compatibility
- Configure CLI entry point for plc-register command
- Enable editable installation with pip install -e .

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

+21
plc-register.py plc_register.py
+21
pyproject.toml
··· 1 + [build-system] 2 + requires = ["setuptools>=45", "wheel"] 3 + build-backend = "setuptools.build_meta" 4 + 5 + [project] 6 + name = "vit" 7 + version = "0.1.0" 8 + description = "Minimal DID:PLC genesis op generator + registrar" 9 + requires-python = ">=3.9" 10 + dependencies = [ 11 + "cryptography", 12 + "dag-cbor", 13 + "base58", 14 + "requests", 15 + ] 16 + 17 + [project.scripts] 18 + plc-register = "plc_register:main" 19 + 20 + [tool.setuptools] 21 + py-modules = ["plc_register"]