Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use pytoolconfig for configuration #473

Merged
merged 35 commits into from
Jun 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
a66ba90
use pytoolconfig for configuration
bagel897 May 13, 2022
d26765e
migrate from setup.py to pyproject.toml
bagel897 May 3, 2022
79bbec6
remove pydantic dependency
bagel897 May 21, 2022
1046994
use read the docs and sphinx
bagel897 May 22, 2022
48c255b
add universal keys
bagel897 May 22, 2022
0f2964b
drop python2 support
bagel897 May 22, 2022
f8bab12
use pyupgrade to bump to python 3.7
bagel897 May 22, 2022
63f041d
drop python 3.6 support
bagel897 May 22, 2022
9c13ee6
fix dependency specifier
bagel897 May 22, 2022
ca4fb28
blacken
bagel897 May 22, 2022
ec2d323
merge prefs with dataclass
bagel897 May 24, 2022
1eaa5c0
Merge branch 'master' into toml
lieryan May 24, 2022
b84c46a
use rtd theme
bagel897 May 28, 2022
2bc1996
fix: typos, whitespace, defaults
bagel897 May 28, 2022
a57a27c
put all documentation and keys in prefs
bagel897 May 28, 2022
e1132c6
remove default config
bagel897 May 28, 2022
ff8f984
remove old config file
bagel897 May 28, 2022
7cf96e1
bump version, work on spacing issues
bagel897 May 28, 2022
4246efd
Merge branch 'master' of https://github.com/python-rope/rope into toml
bagel897 May 28, 2022
0753cc0
Update changelog
bagel897 May 28, 2022
02d47ec
Merge branch 'master' of https://github.com/python-rope/rope into toml
bagel897 Jun 4, 2022
10b5456
Merge branch 'master' into toml
lieryan Jun 7, 2022
f7dd7ec
Fix incorrect merge conflict resolution
lieryan Jun 7, 2022
be47cb5
Merge branch 'master' into toml
lieryan Jun 14, 2022
75fd6cd
Fix whitespace
lieryan Jun 8, 2022
e10caf6
Update CHANGELOG.md
lieryan Jun 14, 2022
d64369e
Merge branch 'master' into toml
lieryan Jun 14, 2022
8b97718
Merge branch 'master' into toml
lieryan Jun 14, 2022
58faa9f
Merge branch 'master' into toml
lieryan Jun 14, 2022
2f0d893
Fix typo preform_doa->perform_doa
lieryan Jun 14, 2022
9370185
Restore default_config.py
lieryan Jun 14, 2022
8e4f9d3
Change the default config.py to only document
lieryan Jun 14, 2022
f53c360
fix: use lambda and remove extra pass
bagel897 Jun 15, 2022
a7cc890
docs: link default_config.py
bagel897 Jun 15, 2022
992841f
Merge branch 'master' into toml
lieryan Jun 17, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# New feature

- #473 Pyproject.toml support (@bageljrkhanofemus)
- #489 Rope now publishes documentations to readthedocs.org (@bageljrkhanofemus)
- #490 Migrate from setup.py to pyproject.toml (@bageljrkhanofemus)

Expand Down
17 changes: 12 additions & 5 deletions docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,17 @@ Additionally, you can run an executable function at startup of rope.
def project_opened(project):
"""This function is called after opening the project"""
# Do whatever you like here!


..
Options
-------
.. autopytoolconfigtable:: rope.base.prefs.Prefs



Options
-------
.. autopytoolconfigtable:: rope.base.prefs.Prefs

Old Configuration File
----------------------
This is a sample config.py. While this config.py works and all options here should be supported, the above documentation reflects the latest version of rope.

.. literalinclude:: default_config.py
:language: python3
108 changes: 65 additions & 43 deletions rope/base/default_config.py → docs/default_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,104 +9,125 @@ def set_prefs(prefs):
# Changes to ignored resources are not added to the history and
# VCSs. Also they are not returned in `Project.get_files()`.
# Note that ``?`` and ``*`` match all characters but slashes.
# '*.pyc': matches 'test.pyc' and 'pkg/test.pyc'
# 'mod*.pyc': matches 'test/mod1.pyc' but not 'mod/1.pyc'
# '.svn': matches 'pkg/.svn' and all of its children
# 'build/*.o': matches 'build/lib.o' but not 'build/sub/lib.o'
# 'build//*.o': matches 'build/lib.o' and 'build/sub/lib.o'
prefs["ignored_resources"] = [
"*.pyc",
"*~",
".ropeproject",
".hg",
".svn",
"_svn",
".git",
".tox",
".venv",
"venv",
]
# "*.pyc": matches "test.pyc" and "pkg/test.pyc"
# "mod*.pyc": matches "test/mod1.pyc" but not "mod/1.pyc"
# ".svn": matches "pkg/.svn" and all of its children
# "build/*.o": matches "build/lib.o" but not "build/sub/lib.o"
# "build//*.o": matches "build/lib.o" and "build/sub/lib.o"
#
# prefs["ignored_resources"] = [
# "*.pyc",
# "*~",
# ".ropeproject",
# ".hg",
# ".svn",
# "_svn",
# ".git",
# ".tox",
# ".venv",
# "venv",
# ]

# Specifies which files should be considered python files. It is
# useful when you have scripts inside your project. Only files
# ending with ``.py`` are considered to be python files by
# default.
# prefs['python_files'] = ['*.py']
#
# prefs["python_files"] = ["*.py"]

# Custom source folders: By default rope searches the project
# for finding source folders (folders that should be searched
# for finding modules). You can add paths to that list. Note
# that rope guesses project source folders correctly most of the
# time; use this if you have any problems.
# The folders should be relative to project root and use '/' for
# The folders should be relative to project root and use "/" for
# separating folders regardless of the platform rope is running on.
# 'src/my_source_folder' for instance.
# prefs.add('source_folders', 'src')
# "src/my_source_folder" for instance.
#
# prefs.add("source_folders", "src")

# You can extend python path for looking up modules
# prefs.add('python_path', '~/python/')
#
# prefs.add("python_path", "~/python/")

# Should rope save object information or not.
prefs["save_objectdb"] = True
prefs["compress_objectdb"] = False
#
# prefs["save_objectdb"] = True
# prefs["compress_objectdb"] = False

# If `True`, rope analyzes each module when it is being saved.
prefs["automatic_soa"] = True
#
# prefs["automatic_soa"] = True
#
# The depth of calls to follow in static object analysis
prefs["soa_followed_calls"] = 0
#
# prefs["soa_followed_calls"] = 0

# If `False` when running modules or unit tests "dynamic object
# analysis" is turned off. This makes them much faster.
prefs["perform_doa"] = True
#
# prefs["perform_doa"] = True

# Rope can check the validity of its object DB when running.
prefs["validate_objectdb"] = True
#
# prefs["validate_objectdb"] = True

# How many undos to hold?
prefs["max_history_items"] = 32
#
# prefs["max_history_items"] = 32

# Shows whether to save history across sessions.
prefs["save_history"] = True
prefs["compress_history"] = False
#
# prefs["save_history"] = True
# prefs["compress_history"] = False

# Set the number spaces used for indenting. According to
# :PEP:`8`, it is best to use 4 spaces. Since most of rope's
# unit-tests use 4 spaces it is more reliable, too.
prefs["indent_size"] = 4
#
# prefs["indent_size"] = 4

# Builtin and c-extension modules that are allowed to be imported
# and inspected by rope.
prefs["extension_modules"] = []
#
# prefs["extension_modules"] = []

# Add all standard c-extensions to extension_modules list.
prefs["import_dynload_stdmods"] = True
#
# prefs["import_dynload_stdmods"] = True

# If `True` modules with syntax errors are considered to be empty.
# The default value is `False`; When `False` syntax errors raise
# `rope.base.exceptions.ModuleSyntaxError` exception.
prefs["ignore_syntax_errors"] = False
#
# prefs["ignore_syntax_errors"] = False

# If `True`, rope ignores unresolvable imports. Otherwise, they
# appear in the importing namespace.
prefs["ignore_bad_imports"] = False
#
# prefs["ignore_bad_imports"] = False

# If `True`, rope will insert new module imports as
# `from <package> import <module>` by default.
prefs["prefer_module_from_imports"] = False
#
# prefs["prefer_module_from_imports"] = False

# If `True`, rope will transform a comma list of imports into
# multiple separate import statements when organizing
# imports.
prefs["split_imports"] = False
#
# prefs["split_imports"] = False

# If `True`, rope will remove all top-level import statements and
# reinsert them at the top of the module when making changes.
prefs["pull_imports_to_top"] = True
#
# prefs["pull_imports_to_top"] = True

# If `True`, rope will sort imports alphabetically by module name instead
# of alphabetically by import statement, with from imports after normal
# imports.
prefs["sort_imports_alphabetically"] = False
#
# prefs["sort_imports_alphabetically"] = False

# Location of implementation of
# rope.base.oi.type_hinting.interfaces.ITypeHintingFactory In general
Expand All @@ -115,9 +136,10 @@ def set_prefs(prefs):
# listed in module rope.base.oi.type_hinting.providers.interfaces
# For example, you can add you own providers for Django Models, or disable
# the search type-hinting in a class hierarchy, etc.
prefs[
"type_hinting_factory"
] = "rope.base.oi.type_hinting.factory.default_type_hinting_factory"
#
# prefs[
# "type_hinting_factory"
# ] = "rope.base.oi.type_hinting.factory.default_type_hinting_factory"


def project_opened(project):
Expand Down