Skip to content

Commit 730dc65

Browse files
committed
Renamed top level package 'SCRAM' to 'src'.
1 parent 06d401d commit 730dc65

File tree

18 files changed

+9
-9
lines changed

18 files changed

+9
-9
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
sys.path.insert(0, os.path.abspath('../..'))
2323

2424
# Import project metadata
25-
from SCRAM import metadata
25+
from src import metadata
2626

2727
# -- General configuration ----------------------------------------------------
2828

pavement.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def run(args):
129129
# executable. So we just pass the package name in as the executable name,
130130
# since it's close enough. This should never be seen by an end user
131131
# installing through Setuptools anyway.
132-
from SCRAM.main import main
132+
from src.main import main
133133
raise SystemExit(main([CODE_DIRECTORY] + args))
134134

135135

run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
main.py is 'unhappy' when it is called from inside the module.
66
"""
77

8-
from SCRAM.main import entry_point
8+
from src.main import entry_point
99

1010
if __name__ == '__main__':
1111
entry_point()

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,11 +266,11 @@ def run_tests(self):
266266
zip_safe=False, # don't use eggs
267267
entry_points={
268268
'console_scripts': [
269-
'SCRAM_cli = SCRAM.main:entry_point'
269+
'SCRAM_cli = src.main:entry_point'
270270
],
271271
# if you have a gui, use this
272272
# 'gui_scripts': [
273-
# 'SCRAM_gui = SCRAM.gui:entry_point'
273+
# 'SCRAM_gui = src.gui:entry_point'
274274
# ]
275275
}
276276
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)