-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (22 loc) · 704 Bytes
/
Makefile
File metadata and controls
30 lines (22 loc) · 704 Bytes
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
28
29
30
all: build-source-package
build-source-package: clean
./setup.py sdist
install: clean
./setup.py install --user
uninstall:
pip uninstall concurrent_tree_crawler
test:
./utils/run_tests.py
docs-api:
./utils/make_documentation.sh
## Check if the metadata of the package meets minimal requirements to build
## a package. With option `--restructuredtext`, check also if the value of the
## parameter `long_description` of the function `setup` is a valid
## restructuretext.
check-package-metatada:
./setup.py check --restructuredtext
upload:
./setup.py sdist upload --quiet
./setup.py bdist_egg upload --quiet
clean:
rm -rf build dist concurrent_tree_crawler.egg-info docs-api tmp MANIFEST