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

setup.cfg 508 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
  1. [bumpversion]
  2. current_version = 1.3.0
  3. commit = True
  4. tag = True
  5. [bumpversion:file:setup.py]
  6. search = version='{current_version}'
  7. replace = version='{new_version}'
  8. [bumpversion:file:face_recognition/__init__.py]
  9. search = __version__ = '{current_version}'
  10. replace = __version__ = '{new_version}'
  11. [bdist_wheel]
  12. universal = 1
  13. [flake8]
  14. exclude =
  15. .github,
  16. .idea,
  17. .eggs,
  18. examples,
  19. docs,
  20. .tox,
  21. bin,
  22. dist,
  23. tools,
  24. *.egg-info,
  25. __init__.py,
  26. *.yml
  27. max-line-length = 160
Tip!

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

Comments

Loading...