-
Notifications
You must be signed in to change notification settings - Fork 9
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
1 parent
70edcc7
commit d33c5b9
Showing
8 changed files
with
323 additions
and
306 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 |
---|---|---|
|
@@ -6,47 +6,53 @@ | |
|
||
def requirements(): | ||
"""Requirement from source.""" | ||
with open('requirements.txt', 'r', encoding='utf8') as fil: | ||
with open("requirements.txt", "r", encoding="utf8") as fil: | ||
return fil.read().splitlines() | ||
|
||
|
||
def readme(): | ||
"""Readme from source.""" | ||
with open('README.md', 'r', encoding='utf8') as fil: | ||
with open("README.md", "r", encoding="utf8") as fil: | ||
return fil.read() | ||
|
||
|
||
setup(name='uom', | ||
version='0.6.1', | ||
description='Unit of Measure conversion tool', | ||
long_description=readme(), | ||
long_description_content_type='text/markdown', | ||
classifiers=['Development Status :: 5 - Production/Stable', | ||
'Environment :: Console', | ||
'Intended Audience :: Customer Service', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: BSD License', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Topic :: Scientific/Engineering', | ||
'Topic :: Scientific/Engineering :: Information Analysis'], | ||
keywords='uom unit measurement measure Energistics oilfield', | ||
url='http://github.com/schlumberger/UOM', | ||
author='Velizar VESSELINOV', | ||
author_email='[email protected]', | ||
license='BSD 2-Clause “Simplified” License', | ||
license_file='LICENSE.md', | ||
packages=['uom'], | ||
install_requires=requirements(), | ||
python_requires='>=3.6', | ||
test_suite='uom.tests', | ||
entry_points={ | ||
'console_scripts': ['uom_convert_value=uom.cmd_line:cmd_convert', | ||
'uom_base_unit=uom.cmd_line:cmd_base_unit'], | ||
}, | ||
include_package_data=True, | ||
zip_safe=False) | ||
setup( | ||
name="uom", | ||
version="0.6.2", | ||
description="Unit of Measure conversion tool", | ||
long_description=readme(), | ||
long_description_content_type="text/markdown", | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Intended Audience :: Customer Service", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: BSD License", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Information Analysis", | ||
], | ||
keywords="uom unit measurement measure Energistics oilfield", | ||
url="http://github.com/schlumberger/UOM", | ||
author="Velizar VESSELINOV", | ||
author_email="[email protected]", | ||
license="BSD 2-Clause “Simplified” License", | ||
license_file="LICENSE.md", | ||
packages=["uom"], | ||
install_requires=requirements(), | ||
python_requires=">=3.6", | ||
test_suite="uom.tests", | ||
entry_points={ | ||
"console_scripts": [ | ||
"uom_convert_value=uom.cmd_line:cmd_convert", | ||
"uom_base_unit=uom.cmd_line:cmd_base_unit", | ||
], | ||
}, | ||
include_package_data=True, | ||
zip_safe=False, | ||
) |
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
Oops, something went wrong.