Skip to content

Commit e5a3f62

Browse files
committed
add/update authors
1 parent 80d8ccc commit e5a3f62

File tree

7 files changed

+15
-10
lines changed

7 files changed

+15
-10
lines changed

Diff for: .travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ branches:
1818
- /^\d/
1919
notifications:
2020
email:
21-
- opensource-tests@paylogic.com
21+
- bubenkoff@gmail.com

Diff for: CHANGES.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Changelog
4949
1.0.3
5050
-----
5151

52-
- unicode fixes to setup.py (bubenkoff,valberg)
52+
- unicode fixes to setup.py (bubenkoff, valberg)
5353

5454

5555
1.0.2

Diff for: LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) Paylogic International
1+
Copyright (c) Anatoly Bubenkov, Paylogic International and others
22

33
Permission is hereby granted, free of charge, to any person obtaining
44
a copy of this software and associated documentation files (the

Diff for: README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,4 +264,4 @@ This software is licensed under the `MIT license <http://en.wikipedia.org/wiki/M
264264
See `License <https://github.com/paylogic/pytest-splinter/blob/master/LICENSE.txt>`_
265265

266266

267-
© 2014 Paylogic International.
267+
© 2014 Anatoly Bubenkov, Paylogic International and others.

Diff for: docs/conf.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
# General information about the project.
4848
project = u'pytest-splinter'
49-
AUTHOR = 'Paylogic International'
49+
AUTHOR = 'Anatoly Bubenkov, Paylogic International and others'
5050
copyright = u'2014, ' + AUTHOR
5151

5252
# The version info for the project you're documenting, acts as replacement for
@@ -189,7 +189,7 @@
189189
# Grouping the document tree into LaTeX files. List of tuples
190190
# (source start file, target name, title, author, documentclass [howto/manual]).
191191
latex_documents = [
192-
('index', 'pytest-bdd.tex', u'pytest-bdd Documentation', AUTHOR, 'manual'),
192+
('index', 'pytest-splinter.tex', u'pytest-splinter Documentation', AUTHOR, 'manual'),
193193
]
194194

195195
# The name of an image file (relative to this directory) to place at the top of
@@ -218,7 +218,7 @@
218218
# One entry per manual page. List of tuples
219219
# (source start file, name, description, authors, manual section).
220220
man_pages = [
221-
('index', 'pytest-bdd', u'pytest-splinter Documentation',
221+
('index', 'pytest-splinter', u'pytest-splinter Documentation',
222222
[AUTHOR], 1)
223223
]
224224

@@ -233,7 +233,7 @@
233233
# dir menu entry, description, category)
234234
texinfo_documents = [
235235
('index', 'pytest-splinter', u'pytest-splinter Documentation',
236-
AUTHOR, 'pytest-splinter', 'One line description of project.',
236+
AUTHOR, 'pytest-splinter', 'splinter pytest testing framework integration.',
237237
'Miscellaneous'),
238238
]
239239

Diff for: docs/index.rst

+4
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,7 @@ Welcome to pytest-splinter's documentation!
44
.. contents::
55

66
.. include:: ../README.rst
7+
8+
.. include:: ../AUTHORS.rst
9+
10+
.. include:: ../CHANGES.rst

Diff for: setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
long_description = (
1414
codecs.open(os.path.join(dirname, 'README.rst'), encoding='utf-8').read() + '\n' +
15+
codecs.open(os.path.join(dirname, 'AUTHORS.rst'), encoding='utf-8').read() + '\n' +
1516
codecs.open(os.path.join(dirname, 'CHANGES.rst'), encoding='utf-8').read()
1617
)
1718

@@ -43,9 +44,9 @@ def run_tests(self):
4344
name='pytest-splinter',
4445
description='Splinter plugin for pytest testing framework',
4546
long_description=long_description,
46-
author='Paylogic developers',
47+
author='Anatoly Bubenkov, Paylogic International and others',
4748
license='MIT license',
48-
author_email='developers@paylogic.com',
49+
author_email='bubenkoff@gmail.com',
4950
version=pytest_splinter.__version__,
5051
cmdclass={'test': Tox},
5152
include_package_data=True,

0 commit comments

Comments
 (0)