Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

[DO NOT MERGE] Updated setup.py author and email and update gitignore. #283

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ coverage.xml
*.cover
.hypothesis/
.pytest_cache/
tests_cov_output/

# Translations
*.mo
Expand Down Expand Up @@ -97,6 +98,10 @@ venv/
env/
ENV/

# pipenv
Pipfile
Pipfile.lock


# Spyder project settings
.spyderproject
Expand Down
4 changes: 2 additions & 2 deletions agogosml/agogosml/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Top-level package for Agogosml."""

__author__ = """Rami Sayar"""
__email__ = 'rami.sayar@microsoft.com'
__author__ = """Microsoft Corporation"""
__email__ = 'csenyc@microsoft.com'
__version__ = '0.1.2'

if __name__ == '__main__':
Expand Down
6 changes: 3 additions & 3 deletions agogosml/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@

# General information about the project.
project = u'Agogosml'
copyright = u"2018, Rami Sayar"
author = u"Rami Sayar"
copyright = u"2018, Microsoft Corporation"
author = u"Microsoft Corporation"

# The version info for the project you're documenting, acts as replacement
# for |version| and |release|, also used in various other places throughout
Expand Down Expand Up @@ -130,7 +130,7 @@
latex_documents = [
(master_doc, 'agogosml.tex',
u'Agogosml Documentation',
u'Rami Sayar', 'manual'),
u'Microsoft Corporation', 'manual'),
]


Expand Down
4 changes: 2 additions & 2 deletions agogosml/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
test_requirements = ['pytest', ]

setup(
author="Rami Sayar",
author_email='rami.sayar@microsoft.com',
author="Microsoft Corporation",
author_email='csenyc@microsoft.com',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
Expand Down
4 changes: 2 additions & 2 deletions agogosml_cli/cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Top-level package for agogosml_cli."""

__author__ = """Rami Sayar"""
__email__ = 'rami.sayar@microsoft.com'
__author__ = """Microsoft Corporation"""
__email__ = 'csenyc@microsoft.com'
__version__ = '0.1.2'

if __name__ == '__main__':
Expand Down
4 changes: 2 additions & 2 deletions agogosml_cli/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
# General information about the project.
project = u'Agogosml CLI'
copyright = u"2018, Microsoft"
author = u"Rami Sayar"
author = u"Microsoft Corporation"

# The version info for the project you're documenting, acts as replacement
# for |version| and |release|, also used in various other places throughout
Expand Down Expand Up @@ -130,7 +130,7 @@
latex_documents = [
(master_doc, 'agogosml_cli.tex',
u'Agogosml CLI Documentation',
u'Rami Sayar', 'manual'),
u'Microsoft Corporation', 'manual'),
]


Expand Down
6 changes: 3 additions & 3 deletions agogosml_cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
test_requirements = ['pytest', ]

setup(
author="Rami Sayar",
author_email='rami.sayar@microsoft.com',
author="Microsoft Corporation",
author_email='csenyc@microsoft.com',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
Expand Down Expand Up @@ -47,7 +47,7 @@
setup_requires=setup_requirements,
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/Microsoft/agogosml/agogosml_cli',
url='https://github.com/Microsoft/agogosml',
version='0.1.2',
zip_safe=False,
)