Skip to content

Commit 53fc562

Browse files
committed
updates for renaming/restructuring
1 parent 3879009 commit 53fc562

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

pytheus/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.0.1'
1+
__version__ = '1.2.3'

pytheus/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def analyze(which_directory, all_weights_plus_minus_one,
8484
@cli.command()
8585
def list():
8686
"""List all included examples."""
87-
configs_dir = pkg_resources.resource_filename(pytheus.__name__, 'configs')
87+
configs_dir = pkg_resources.resource_filename(pytheus.__name__, 'graphs')
8888
files = sorted(os.listdir(configs_dir))
8989
for file in files:
9090
click.echo(file.replace('.json', ''))

pytheus/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ def read_config(is_example, filename):
410410
filename += '.json'
411411
# option for running files from example folder
412412
if is_example:
413-
examples_dir = pkg_resources.resource_filename(pytheus.__name__, "configs")
413+
examples_dir = pkg_resources.resource_filename(pytheus.__name__, "graphs")
414414
filename = Path(examples_dir) / filename
415415
# error if file does not exist
416416
if not os.path.exists(filename) or os.path.isdir(filename):

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
from setuptools import setup, find_packages
88

99
author = 'artificial-scientist-lab'
10-
email = '' # TODO: insert email
10+
1111
description = 'Theseus, a highly-efficient inverse-design algorithm for quantum optical experiments'
1212
dist_name = 'pytheus'
1313
package_name = 'pytheus'
1414
year = '2022'
15-
url = 'https://github.com/artificial-scientist-lab/Theseus' # TODO: insert public repo URL
15+
url = 'https://github.com/artificial-scientist-lab/Pytheus'
1616

1717

1818
def get_version():

0 commit comments

Comments
 (0)