-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (37 loc) · 3.29 KB
/
Copy pathsetup.py
File metadata and controls
44 lines (37 loc) · 3.29 KB
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
# coding: utf-8
"""
DNA Evolutions - JOpt.TourOptimizer
This is DNA's JOpt.TourOptimizer service. A RESTful Spring Boot application using springdoc-openapi and OpenAPI 3. JOpt.TourOpptimizer is a service that delivers route optimization and automatic scheduling features to be easily integrated into any third-party application. JOpt.TourOpptimizer encapsulates all necessary optimization functionality and provides a comprehensive REST API that offers a domain-specific optimization interface for the transportation industry. The service is stateless and does not come with graphical user interfaces, map depiction or any databases. These extensions and adjustments are supposed to be introduced by the consumer of the service while integrating it into his/her own application. The service will allow for many suitable adjustments and user-specific settings to adjust the behaviour and optimization goals (e.g. minimizing distance, maximizing resource utilization, etc.) through a comprehensive set of functions. This will enable you to gain control of the complete optimization processes.This service is based on JOpt (null)
The version of the OpenAPI document: 1.2.6-SNAPSHOT
Contact: info@dna-evolutions.com
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
from setuptools import setup, find_packages # noqa: H301
NAME = "touroptimizer-py-client"
VERSION = "1.0.0"
PYTHON_REQUIRES = ">=3.9"
REQUIRES = [
"urllib3 >= 2.1.0, < 3.0.0",
"python-dateutil >= 2.8.2",
"pydantic >= 2",
"typing-extensions >= 4.7.1",
"aiohttp >= 3.9.3",
]
setup(
name=NAME,
version=VERSION,
description="DNA Evolutions - JOpt.TourOptimizer",
author="DNA Evolutions GmbH",
author_email="info@dna-evolutions.com",
url="",
keywords=["OpenAPI", "OpenAPI-Generator", "DNA Evolutions - JOpt.TourOptimizer"],
install_requires=REQUIRES,
packages=find_packages(include=['touroptimizer_py_client', 'touroptimizer_py_client.*', 'util', 'util.*', 'examples', 'examples.*']),
include_package_data=True,
long_description_content_type='text/markdown',
long_description="""\
This is DNA's JOpt.TourOptimizer service. A RESTful Spring Boot application using springdoc-openapi and OpenAPI 3. JOpt.TourOpptimizer is a service that delivers route optimization and automatic scheduling features to be easily integrated into any third-party application. JOpt.TourOpptimizer encapsulates all necessary optimization functionality and provides a comprehensive REST API that offers a domain-specific optimization interface for the transportation industry. The service is stateless and does not come with graphical user interfaces, map depiction or any databases. These extensions and adjustments are supposed to be introduced by the consumer of the service while integrating it into his/her own application. The service will allow for many suitable adjustments and user-specific settings to adjust the behaviour and optimization goals (e.g. minimizing distance, maximizing resource utilization, etc.) through a comprehensive set of functions. This will enable you to gain control of the complete optimization processes.This service is based on JOpt (null)
""", # noqa: E501
package_data={"touroptimizer_py_client": ["py.typed"]},
)