mirror of https://github.com/mtshiba/pylyzer
chore: add `clean` option
This commit is contained in:
parent
6b807d17e1
commit
75be1077db
18
README.md
18
README.md
|
|
@ -10,6 +10,12 @@
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
### pip
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pip install pylyzer
|
||||||
|
```
|
||||||
|
|
||||||
### cargo (rust package manager)
|
### cargo (rust package manager)
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|
@ -25,18 +31,6 @@ cargo install --path .
|
||||||
|
|
||||||
Make sure that `cargo/rustc` is up-to-date, as pylyzer may be written with the latest language features.
|
Make sure that `cargo/rustc` is up-to-date, as pylyzer may be written with the latest language features.
|
||||||
|
|
||||||
### pip
|
|
||||||
|
|
||||||
```bash
|
|
||||||
pip install pylyzer
|
|
||||||
```
|
|
||||||
|
|
||||||
__If installed this way, you also need to [install Erg](https://github.com/mtshiba/ergup).__
|
|
||||||
|
|
||||||
```bash
|
|
||||||
curl -L https://github.com/mtshiba/ergup/raw/main/ergup.py | python3
|
|
||||||
```
|
|
||||||
|
|
||||||
### [GitHub Releases](https://github.com/mtshiba/pylyzer/releases/latest)
|
### [GitHub Releases](https://github.com/mtshiba/pylyzer/releases/latest)
|
||||||
|
|
||||||
## What is the advantage over pylint, pyright, pytype, etc.?
|
## What is the advantage over pylint, pyright, pytype, etc.?
|
||||||
|
|
|
||||||
19
setup.py
19
setup.py
|
|
@ -3,10 +3,22 @@ import os
|
||||||
import shlex
|
import shlex
|
||||||
from glob import glob
|
from glob import glob
|
||||||
import tomllib
|
import tomllib
|
||||||
|
import shutil
|
||||||
|
|
||||||
from setuptools import setup
|
from setuptools import setup, Command
|
||||||
from setuptools_rust import RustBin
|
from setuptools_rust import RustBin
|
||||||
|
|
||||||
|
class Clean(Command):
|
||||||
|
user_options = []
|
||||||
|
def initialize_options(self):
|
||||||
|
pass
|
||||||
|
def finalize_options(self):
|
||||||
|
pass
|
||||||
|
def run(self):
|
||||||
|
# super().run()
|
||||||
|
for d in ["build", "dist", "src/pylyzer.egg-info"]:
|
||||||
|
shutil.rmtree(d, ignore_errors=True)
|
||||||
|
|
||||||
with open("README.md", encoding="utf-8", errors="ignore") as fp:
|
with open("README.md", encoding="utf-8", errors="ignore") as fp:
|
||||||
long_description = fp.read()
|
long_description = fp.read()
|
||||||
|
|
||||||
|
|
@ -23,7 +35,7 @@ cargo_args = ["--no-default-features"]
|
||||||
home = os.path.expanduser("~")
|
home = os.path.expanduser("~")
|
||||||
file_and_dirs = glob(".erg/lib/**", recursive=True, root_dir=home)
|
file_and_dirs = glob(".erg/lib/**", recursive=True, root_dir=home)
|
||||||
paths = [Path(home + "/" + path) for path in file_and_dirs if os.path.isfile(home + "/" + path)]
|
paths = [Path(home + "/" + path) for path in file_and_dirs if os.path.isfile(home + "/" + path)]
|
||||||
files = [(str(path).removesuffix("/" + path.name).removeprefix(home + "/"), str(path)) for path in paths]
|
files = [(str(path).removesuffix("/" + path.name).removeprefix(home), str(path)) for path in paths]
|
||||||
data_files = {}
|
data_files = {}
|
||||||
for key, value in files:
|
for key, value in files:
|
||||||
if key in data_files:
|
if key in data_files:
|
||||||
|
|
@ -46,6 +58,9 @@ setup(
|
||||||
rust_extensions=[
|
rust_extensions=[
|
||||||
RustBin("pylyzer", args=cargo_args, cargo_manifest_args=["--locked"])
|
RustBin("pylyzer", args=cargo_args, cargo_manifest_args=["--locked"])
|
||||||
],
|
],
|
||||||
|
cmdclass={
|
||||||
|
"clean": Clean,
|
||||||
|
},
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Development Status :: 2 - Pre-Alpha",
|
"Development Status :: 2 - Pre-Alpha",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue