22 lines
657 B
Python
22 lines
657 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='tcalc',
|
|
version='0.1.1',
|
|
description='The model for determining the spot price of transportation from point A to point B (only for direct routes)',
|
|
url='',
|
|
author='Ilushenko Ivan',
|
|
author_email='ilyuschenko@it.dot-dot.ru',
|
|
license='',
|
|
packages=['tcalc'],
|
|
install_requires=['geopy>=2.4.1',
|
|
'onnxruntime>=1.18.1',
|
|
'requests>=2.32.3'
|
|
],
|
|
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: Apache 2.0",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
) |