-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
54 lines (49 loc) · 1.87 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# -*- coding: utf-8 -*-
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding='utf-8')
packages = [
'unitsnet_py',
'unitsnet_py.units'
]
package_data = {
'': ['*']
}
# The UnitNet definition version that the current package is based on to generate units classes
# see
definition_version = '5.61.0'
setup_kwargs = {
'name': 'unitsnet-py',
'version': '0.1.135',
'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',
'long_description': long_description,
'long_description_content_type': "text/markdown",
'author': 'Haim Kastner',
'author_email': '[email protected]',
'maintainer': 'Haim Kastner',
'maintainer_email': '[email protected]',
'url': 'https://github.com/haimkastner/unitsnet-py',
'packages': packages,
'package_data': package_data,
'python_requires': '>=3.8,<4.0',
'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)