blob: ca2dbe568b7809419a244a4ef0dfd5bad40efe59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Setuptools integration
Upon installation, isort enables a `setuptools` command that checks
Python files declared by your project.
Running `python setup.py isort` on the command line will check the files
listed in your `py_modules` and `packages`. If any warning is found, the
command will exit with an error code:
```bash
$ python setup.py isort
```
Also, to allow users to be able to use the command without having to
install isort themselves, add isort to the setup\_requires of your
`setup()` like so:
```python
setup(
name="project",
packages=["project"],
setup_requires=[
"isort"
]
)
```
|