https://github.com/dephell/dephell_setuptools
https://github.com/dephell/dephell_setuptools
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dephell/dephell_setuptools
- Owner: dephell
- License: mit
- Created: 2019-11-11T17:10:59.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-06-15T06:19:21.000Z (almost 4 years ago)
- Last Synced: 2025-04-14T23:42:20.870Z (12 months ago)
- Language: Python
- Size: 50.8 KB
- Stars: 2
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dephell_setuptools
Extract meta information from `setup.py`.
Install:
```
python3 -m pip install --user dephell_setuptools
```
CLI:
```
python3 -m dephell_setuptools ./setup.py
```
Lib:
```python
from pathlib import Path
from dephell_setuptools import read_setup
result = read_setup(path=Path('setup.py'))
```