-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump all copyright notices as needed. Update the documentation on how to install, since a tarball release will soon be available and the package will be uploaded on PyPI.
- Loading branch information
Showing
9 changed files
with
42 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
source_suffix = '.rst' | ||
master_doc = 'index' | ||
|
||
copyright = u'2021 Damien Goutte-Gattat' | ||
copyright = u'2021,2022 Damien Goutte-Gattat' | ||
author = u'Damien Goutte-Gattat <[email protected]>' | ||
|
||
language = 'en' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# grainyhead - Helper tools for GitHub | ||
# Copyright © 2021 Damien Goutte-Gattat | ||
# Copyright © 2021,2022 Damien Goutte-Gattat | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
|
@@ -17,17 +17,23 @@ | |
from setuptools import setup | ||
from incenp.grainyhead import __version__ | ||
|
||
with open('README.md', 'r') as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
name='grainyhead', | ||
version=__version__, | ||
description='Helper tools for GitHub', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
author='Damien Goutte-Gattat', | ||
author_email='[email protected]', | ||
classifiers=[ | ||
'Development Status :: 1 - Planning', | ||
'Environment :: Console', | ||
'Licence :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', | ||
'Programming Language :: Python :: 3.9' | ||
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', | ||
'Programming Language :: Python :: 3.9', | ||
'Intended Audience :: Developers' | ||
], | ||
|
||
install_requires=[ | ||
|