Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ dev_template = "{tag}"
dirty_template = "{tag}"

[tool.setuptools.packages.find]
where = ["dpx"] # list of folders that contain the packages (["."] by default)
where = ["src"] # list of folders that contain the packages (["."] by default)
include = ["*"] # package names should match these glob patterns (["*"] by default)
exclude = [] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
##############################################################################

# package version
from dpx.confutils.version import __version__
from diffpy.srxconfutils.version import __version__

# some convenience imports
from dpx.confutils.config import ConfigBase, ConfigBase
from diffpy.srxconfutils.config import ConfigBase, ConfigBase

# unit tests
def test():
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
except:
from ordereddict import OrderedDict

from dpx.confutils.tools import _configPropertyRad, _configPropertyR, \
from diffpy.srxconfutils.tools import _configPropertyRad, _configPropertyR, \
_configPropertyRW, str2bool, opt2Str, str2Opt, StrConv, FakeConfigFile

class ConfigBase(object):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
Event, CFloat, CInt, on_trait_change
from traitsui.api import Item, Group, View

from dpx.confutils.tools import _configPropertyRad, _configPropertyR, _configPropertyRW, \
from diffpy.srxconfutils.tools import _configPropertyRad, _configPropertyR, _configPropertyRW, \
str2bool, opt2Str, str2Opt, StrConv
from dpx.confutils.config import ConfigBase
from diffpy.srxconfutils.config import ConfigBase

class ConfigBaseTraits(HasTraits, ConfigBase):
'''
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.