Skip to content

Commit af2ef7d

Browse files
committed
Update authors and add intersphinx links
1 parent 57e8442 commit af2ef7d

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

doc/conf.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def __getattr__(cls, name):
113113

114114
# General information about the project.
115115
project = u'xray'
116-
copyright = u'2014, Stephan Hoyer, Alex Kleeman, Eugene Brevdo'
116+
copyright = u'2014, xray Developers'
117117

118118
import xray
119119

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

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

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

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

331331

332332
# Example configuration for intersphinx: refer to the Python standard library.
333-
intersphinx_mapping = {'http://docs.python.org/': None}
333+
intersphinx_mapping = {}
334+
intersphinx_mapping['pandas'] = ('http://pandas.pydata.org/pandas-docs/stable/', None)

setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,18 @@
1818

1919
DISTNAME = 'xray'
2020
LICENSE = 'Apache'
21-
AUTHOR = 'Stephan Hoyer, Alex Kleeman, Eugene Brevdo'
21+
AUTHOR = 'xray Developers'
2222
AUTHOR_EMAIL = '[email protected]'
2323
URL = 'https://github.com/xray/xray'
2424
CLASSIFIERS = [
2525
'Development Status :: 3 - Alpha',
2626
'License :: OSI Approved :: Apache Software License',
2727
'Operating System :: OS Independent',
2828
'Intended Audience :: Science/Research',
29+
'Programming Language :: Python',
30+
'Programming Language :: Python :: 2',
2931
'Programming Language :: Python :: 2.7',
32+
'Programming Language :: Python :: 3',
3033
'Programming Language :: Python :: 3.3',
3134
'Topic :: Scientific/Engineering',
3235
]

0 commit comments

Comments
 (0)