-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
2,572 additions
and
2,389 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
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 |
---|---|---|
|
@@ -20,22 +20,22 @@ | |
|
||
from setuptools import setup | ||
|
||
with open('requirements.txt', 'rb') as f: | ||
install_requires = f.read().decode('utf-8').split('\n') | ||
if not os.getenv('READTHEDOCS'): | ||
install_requires.append('requests-kerberos') | ||
with open("requirements.txt", "rb") as f: | ||
install_requires = f.read().decode("utf-8").split("\n") | ||
if not os.getenv("READTHEDOCS"): | ||
install_requires.append("requests-kerberos") | ||
|
||
with open('test-requirements.txt', 'rb') as f: | ||
test_requires = f.read().decode('utf-8').split('\n') | ||
with open("test-requirements.txt", "rb") as f: | ||
test_requires = f.read().decode("utf-8").split("\n") | ||
|
||
setup( | ||
name='sync2jira', | ||
name="sync2jira", | ||
version=2.0, | ||
description="Sync GitHub issues to jira, via fedmsg", | ||
author='Ralph Bean', | ||
author_email='[email protected]', | ||
url='https://github.com/release-engineering/Sync2Jira', | ||
license='LGPLv2+', | ||
author="Ralph Bean", | ||
author_email="[email protected]", | ||
url="https://github.com/release-engineering/Sync2Jira", | ||
license="LGPLv2+", | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"License :: OSI Approved :: GNU Lesser General " | ||
|
@@ -47,12 +47,12 @@ | |
install_requires=install_requires, | ||
tests_require=test_requires, | ||
packages=[ | ||
'sync2jira', | ||
"sync2jira", | ||
], | ||
include_package_data=True, | ||
zip_safe=False, | ||
entry_points={ | ||
'console_scripts': [ | ||
"console_scripts": [ | ||
"sync2jira=sync2jira.main:main", | ||
"sync2jira-list-managed-urls=sync2jira.main:list_managed", | ||
"sync2jira-close-duplicates=sync2jira.main:close_duplicates", | ||
|
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 |
---|---|---|
|
@@ -16,4 +16,4 @@ | |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110.15.0 USA | ||
# | ||
# Authors: Ralph Bean <[email protected]> | ||
__version__ = '1.7' | ||
__version__ = "1.7" |
Oops, something went wrong.