8000 Fix setup.py. Update MANIFEST.in · doismellburning/github3.py@2e25363 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2e25363

Browse files
committed
Fix setup.py. Update MANIFEST.in
1 parent c22363c commit 2e25363

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include README.rst LICENSE HISTORY.rst
1+
include README.rst LICENSE HISTORY.rst AUTHORS.rst

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222
description="Python wrapper for the GitHub API (http://developer.github.com/v3)",
2323
long_description="\n\n".join([open("README.rst").read(),
2424
open("HISTORY.rst").read()]),
25-
license=open('LICENSE').read()
26-
author="Ian Cordasco",
25+
license=open('LICENSE').read(),
26+
author=github3.__author__,
2727
author_email="graffatcolmingov@gmail.com",
2828
url="https://github3py.readthedocs.org",
2929
packages=packages,
30-
package_data={'': ['LICENSE']},
31-
install_package_data=True,
30+
package_data={'': ['LICENSE', 'AUTHORS.rst']},
31+
include_package_data=True,
3232
install_requires=requires,
3333
classifiers=[
3434
'Development Status :: 2 - Pre-Alpha',

0 commit comments

Comments
 (0)
0