Skip to content

Commit

Permalink
Update authors and add intersphinx links
Browse files Browse the repository at this point in the history
  • Loading branch information
shoyer committed May 20, 2014
1 parent 57e8442 commit af2ef7d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
11 changes: 6 additions & 5 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def __getattr__(cls, name):

# General information about the project.
project = u'xray'
copyright = u'2014, Stephan Hoyer, Alex Kleeman, Eugene Brevdo'
copyright = u'2014, xray Developers'

import xray

Expand Down Expand Up @@ -268,7 +268,7 @@ def __getattr__(cls, name):
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'xray.tex', u'xray Documentation',
u'Stephan Hoyer and Alex Kleeman', 'manual'),
u'xray Developers', 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down Expand Up @@ -298,7 +298,7 @@ def __getattr__(cls, name):
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'xray', u'xray Documentation',
[u'Stephan Hoyer and Alex Kleeman'], 1)
[u'xray Developers'], 1)
]

# If true, show URL addresses after external links.
Expand All @@ -312,7 +312,7 @@ def __getattr__(cls, name):
# dir menu entry, description, category)
texinfo_documents = [
('index', 'xray', u'xray Documentation',
u'Stephan Hoyer and Alex Kleeman', 'xray', 'One line description of project.',
u'xray Developers', 'xray', 'One line description of project.',
'Miscellaneous'),
]

Expand All @@ -330,4 +330,5 @@ def __getattr__(cls, name):


# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'http://docs.python.org/': None}
intersphinx_mapping = {}
intersphinx_mapping['pandas'] = ('http://pandas.pydata.org/pandas-docs/stable/', None)
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,18 @@

DISTNAME = 'xray'
LICENSE = 'Apache'
AUTHOR = 'Stephan Hoyer, Alex Kleeman, Eugene Brevdo'
AUTHOR = 'xray Developers'
AUTHOR_EMAIL = '[email protected]'
URL = 'https://github.com/xray/xray'
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Topic :: Scientific/Engineering',
]
Expand Down

0 comments on commit af2ef7d

Please sign in to comment.