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 368 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
  1. SRC = $(wildcard nbs/*.ipynb)
  2. all: ds4se docs
  3. ds4se: $(SRC)
  4. nbdev_build_lib
  5. touch ds4se
  6. docs_serve: docs
  7. cd docs && bundle exec jekyll serve
  8. docs: $(SRC)
  9. nbdev_build_docs
  10. touch docs
  11. test:
  12. nbdev_test_nbs
  13. release: pypi
  14. nbdev_bump_version
  15. pypi: dist
  16. twine upload --repository pypi dist/*
  17. dist: clean
  18. python setup.py sdist bdist_wheel
  19. clean:
  20. rm -rf dist
Tip!

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

Comments

Loading...