Remove attribution to specific person

pull/366/head
David Sanders 2019-03-25 15:14:04 -06:00
parent 2fb32d204d
commit de4bdf9e30
No known key found for this signature in database
GPG Key ID: 87A8D53EF6038397
4 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
The MIT License (MIT) The MIT License (MIT)
Copyright (c) 2018 Jason Carver Copyright (c) 2019 The Ethereum Foundation
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@ -19,8 +19,8 @@ pip install <PYPI_NAME>
## Developer Setup ## Developer Setup
If you would like to hack on <REPO_NAME>, please check out the If you would like to hack on <REPO_NAME>, please check out the [Snake Charmers
[Ethereum Development Tactical Manual](https://github.com/pipermerriam/ethereum-dev-tactical-manual) Tactical Manual](https://github.com/ethereum/snake-charmers-tactical-manual)
for information on how we do: for information on how we do:
- Testing - Testing

View File

@ -54,7 +54,7 @@ master_doc = 'index'
# General information about the project. # General information about the project.
project = '<PROJECT_NAME>' project = '<PROJECT_NAME>'
copyright = '2018, Jason Carver, Piper Merriam' copyright = '2019, The Ethereum Foundation'
__version__ = setup_version __version__ = setup_version
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
@ -210,7 +210,7 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', '<MODULE_NAME>.tex', '<PROJECT_NAME> Documentation', ('index', '<MODULE_NAME>.tex', '<PROJECT_NAME> Documentation',
'Jason Carver', 'manual'), 'The Ethereum Foundation', 'manual'),
] ]
# The name of an image file (relative to this directory) to place at the top of # The name of an image file (relative to this directory) to place at the top of
@ -240,7 +240,7 @@ latex_documents = [
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', '<MODULE_NAME>', '<PROJECT_NAME> Documentation', ('index', '<MODULE_NAME>', '<PROJECT_NAME> Documentation',
['Jason Carver'], 1) ['The Ethereum Foundation'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -254,7 +254,7 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', '<PROJECT_NAME>', '<PROJECT_NAME> Documentation', ('index', '<PROJECT_NAME>', '<PROJECT_NAME> Documentation',
'Jason Carver', '<PROJECT_NAME>', '<SHORT_DESCRIPTION>', 'The Ethereum Foundation', '<PROJECT_NAME>', '<SHORT_DESCRIPTION>',
'Miscellaneous'), 'Miscellaneous'),
] ]

View File

@ -42,7 +42,7 @@ setup(
version='0.1.0-alpha.0', version='0.1.0-alpha.0',
description="""<PYPI_NAME>: <SHORT_DESCRIPTION>""", description="""<PYPI_NAME>: <SHORT_DESCRIPTION>""",
long_description_markdown_filename='README.md', long_description_markdown_filename='README.md',
author='Jason Carver', author='The Ethereum Foundation',
author_email='ethcalibur+pip@gmail.com', author_email='ethcalibur+pip@gmail.com',
url='https://github.com/ethereum/<REPO_NAME>', url='https://github.com/ethereum/<REPO_NAME>',
include_package_data=True, include_package_data=True,