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 626 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
  1. # See the docstring in versioneer.py for instructions. Note that you must
  2. # re-run 'versioneer.py setup' after changing this section, and commit the
  3. # resulting files.
  4. [versioneer]
  5. VCS = git
  6. style = pep440
  7. versionfile_source = geopandas/_version.py
  8. versionfile_build = geopandas/_version.py
  9. tag_prefix = v
  10. parentdir_prefix = geopandas-
  11. [flake8]
  12. # Black enforces 88 characters line length
  13. max_line_length = 88
  14. ignore =
  15. E203, # Space before : (needed for black formatting of slices)
  16. W503, # Line break before binary operator (needed for black)
  17. F821 # TODO: fix F821 issues (see GH #1120) and remove this line
Tip!

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

Comments

Loading...