Skip to content

Commit

Permalink
Update pkg info
Browse files Browse the repository at this point in the history
  • Loading branch information
haimkastner committed Nov 25, 2024
1 parent 2a67510 commit 98f7e7a
Showing 1 changed file with 24 additions and 8 deletions.
32 changes: 24 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,22 @@
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding='utf-8')

packages = \
['unitsnet_py', 'unitsnet_py.units']
packages = [
'unitsnet_py',
'unitsnet_py.units'
]

package_data = \
{'': ['*']}
package_data = {
'': ['*']
}

# The UnitNet definition version that the current package is based on to generate units classes
# see
definition_version = '5.60.0'

setup_kwargs = {
'name': 'unitsnet-py',
'version': '0.1.128',
'version': '0.1.118',
'license': 'MIT',
'keywords': 'conversion, units-of-measure, units, quantities, unit-converter, converter, unit, measure, measures, measurement, measurements',
'description': 'A better way to hold unit variables and easily convert to the destination unit',
Expand All @@ -30,9 +33,22 @@
'packages': packages,
'package_data': package_data,
'python_requires': '>=3.8,<4.0',
'install_requires': []
'install_requires': [],
'classifiers': [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
],
'project_urls': {
'Source': 'https://github.com/haimkastner/unitsnet-py',
'Documentation': 'https://github.com/haimkastner/unitsnet-py#readme',
'Issue Tracker': 'https://github.com/haimkastner/unitsnet-py/issues',
},
}


setup(**setup_kwargs)

0 comments on commit 98f7e7a

Please sign in to comment.