Skip to content

Commit

Permalink
Merge pull request #18 from sot/de-namespace
Browse files Browse the repository at this point in the history
De-namespace
  • Loading branch information
taldcroft authored Jan 23, 2023
2 parents a181616 + 9d83c7e commit 216306b
Show file tree
Hide file tree
Showing 14 changed files with 119 additions and 134 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Ska.tdb.egg*
ska_tdb.egg*
MANIFEST
dist
doc/_build
Expand Down
22 changes: 0 additions & 22 deletions Makefile

This file was deleted.

4 changes: 2 additions & 2 deletions NOTES.test
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
python setup.py test [With possible additional options like --addopts='-k select_tests -v -s']

python
import Ska.tdb
Ska.tdb.test()
import ska_tdb
ska_tdb.test()
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Ska.tdb: Access the Chandra Telemetry Database
ska_tdb: Access the Chandra Telemetry Database

:Author: Tom Aldcroft
:Copyright: 2012 Smithsonian Astrophysical Observatory
16 changes: 8 additions & 8 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# Ska.tdb documentation build configuration file, created by
# ska_tdb documentation build configuration file, created by
# sphinx-quickstart on Fri Jan 20 12:46:51 2012.
#
# This file is execfile()d with the current directory set to its containing dir.
Expand All @@ -21,7 +21,7 @@

rootpath = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
sys.path.insert(0, rootpath)
import Ska.tdb
import ska_tdb

# -- General configuration -----------------------------------------------------

Expand All @@ -48,15 +48,15 @@
master_doc = 'index'

# General information about the project.
project = u'Ska.tdb'
project = u'ska_tdb'
copyright = u'2012, Tom Aldcroft'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The full version, including alpha/beta/rc tags.
from Ska.tdb import __version__ as release
from ska_tdb import __version__ as release
# The short X.Y version.
version = '.'.join(release.split('.')[:2])

Expand Down Expand Up @@ -102,8 +102,8 @@
html_theme = 'bootstrap-ska'
html_theme_options = {
'logotext1': 'Ska!' ,
'logotext2': 'Ska',
'logotext3': '.tdb',
'logotext2': 'ska_tdb',
'logotext3': '',
'homepage_url': 'https://cxc.cfa.harvard.edu/mta/ASPECT/tool_doc',
'homepage_text': 'ska',
'homepage_text_2': 'tools'
Expand Down Expand Up @@ -194,7 +194,7 @@
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'Skatdb.tex', u'Ska.tdb Documentation',
('index', 'Skatdb.tex', u'ska_tdb Documentation',
u'Tom Aldcroft', 'manual'),
]

Expand Down Expand Up @@ -227,6 +227,6 @@
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'skatdb', u'Ska.tdb Documentation',
('index', 'skatdb', u'ska_tdb Documentation',
[u'Tom Aldcroft'], 1)
]
Loading

0 comments on commit 216306b

Please sign in to comment.