Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

Makefile 393 B

You have to be logged in to leave a comment. Sign In
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
31
32
  1. SRC = $(wildcard nbs/*.ipynb)
  2. all: ds4se docs
  3. ds4se: $(SRC)
  4. nbdev_build_lib
  5. touch ds4se
  6. sync:
  7. nbdev_update_lib
  8. docs_serve: docs
  9. cd docs && bundle exec jekyll serve
  10. docs: $(SRC)
  11. nbdev_build_docs
  12. touch docs
  13. test:
  14. nbdev_test_nbs
  15. release: pypi
  16. nbdev_bump_version
  17. pypi: dist
  18. twine upload --repository pypi dist/*
  19. dist: clean
  20. python setup.py sdist bdist_wheel
  21. clean:
  22. rm -rf dist
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...