-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (17 loc) · 725 Bytes
/
setup.py
File metadata and controls
22 lines (17 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""
Modern PEP 517/518/621 setup stub.
All package configuration is in pyproject.toml following modern Python packaging standards.
This file exists only for backward compatibility with legacy tooling.
For installation:
pip install . # Regular install
pip install -e . # Editable/development install
pip install -e .[dev] # With development dependencies
pip install -e .[all] # With all optional dependencies
Or use the Makefile:
make install # Editable install
make install-dev # With dev dependencies
make install-all # With all dependencies
"""
from setuptools import setup
# All configuration is in pyproject.toml
setup()