-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from MarcinOrlowski/dev
Release 2.2.1
- Loading branch information
Showing
9 changed files
with
119 additions
and
44 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
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 |
---|---|---|
|
@@ -22,43 +22,43 @@ | |
from setuptools import setup, find_packages | ||
|
||
with open('README.md', 'r') as fh: | ||
readme = fh.read() | ||
readme.replace('![trans-tool logo](artwork/trans-tool-logo.png)', | ||
'https://raw.githubusercontent.com/MarcinOrlowski/trans-tool/master/artwork/trans-tool-logo.png', 1) | ||
logo_url = 'https://raw.githubusercontent.com/MarcinOrlowski/trans-tool/master/artwork/trans-tool-logo.png' | ||
readme = fh.read().replace(r'![trans-tool logo](artwork/trans-tool-logo.png)', | ||
f'![trans-tool logo]({logo_url})', 1) | ||
|
||
setup( | ||
name = Const.APP_NAME, | ||
version = Const.APP_VERSION, | ||
packages = find_packages(), | ||
setup( | ||
name = Const.APP_NAME, | ||
version = Const.APP_VERSION, | ||
packages = find_packages(), | ||
|
||
install_requires = [ | ||
'argparse>=1.4.0', | ||
], | ||
python_requires = '>=3.6', | ||
entry_points = { | ||
'console_scripts': [ | ||
'trans-tool = transtool.main:TransTool.start', | ||
'transtool = transtool.main:TransTool.start', | ||
install_requires = [ | ||
'argparse>=1.4.0', | ||
], | ||
}, | ||
python_requires = '>=3.6', | ||
entry_points = { | ||
'console_scripts': [ | ||
'trans-tool = transtool.main:TransTool.start', | ||
'transtool = transtool.main:TransTool.start', | ||
], | ||
}, | ||
|
||
author = 'Marcin Orlowski', | ||
author_email = '[email protected]', | ||
description = 'The translation files checker and syncing tool.', | ||
long_description = readme, | ||
long_description_content_type = 'text/markdown', | ||
url = Const.APP_URL, | ||
keywords = 'translation helper locale language sync check validation', | ||
project_urls = { | ||
'Bug Tracker': 'https://github.com/MarcinOrlowski/trans-tool/issues/', | ||
'Documentation': 'https://github.com/MarcinOrlowski/trans-tool/', | ||
'Source Code': 'https://github.com/MarcinOrlowski/trans-tool/', | ||
}, | ||
# https://choosealicense.com/ | ||
license = 'MIT License', | ||
classifiers = [ | ||
'Programming Language :: Python :: 3', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
], | ||
) | ||
author = 'Marcin Orlowski', | ||
author_email = '[email protected]', | ||
description = 'The translation files checker and syncing tool.', | ||
long_description = readme, | ||
long_description_content_type = 'text/markdown', | ||
url = Const.APP_URL, | ||
keywords = 'translation helper locale language sync check validation', | ||
project_urls = { | ||
'Bug Tracker': 'https://github.com/MarcinOrlowski/trans-tool/issues/', | ||
'Documentation': 'https://github.com/MarcinOrlowski/trans-tool/', | ||
'Source Code': 'https://github.com/MarcinOrlowski/trans-tool/', | ||
}, | ||
# https://choosealicense.com/ | ||
license = 'MIT License', | ||
classifiers = [ | ||
'Programming Language :: Python :: 3', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
], | ||
) |
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