Skip to content

Commit d667d34

Browse files
committed
Add packages
1 parent 2895f0b commit d667d34

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

setup.py

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,8 @@
1212
Do not edit the class manually.
1313
""" # noqa: E501
1414

15-
1615
from setuptools import setup, find_packages # noqa: H301
1716

18-
# To install the library, run the following
19-
#
20-
# python setup.py install
21-
#
22-
# prerequisite: setuptools
23-
# http://pypi.python.org/pypi/setuptools
2417
NAME = "touroptimizer-py-client"
2518
VERSION = "1.0.0"
2619
PYTHON_REQUIRES = ">=3.7"
@@ -40,12 +33,11 @@
4033
url="",
4134
keywords=["OpenAPI", "OpenAPI-Generator", "DNA Evolutions - JOpt.TourOptimizer"],
4235
install_requires=REQUIRES,
43-
packages=find_packages(include=['util', 'util.*', 'examples', 'examples.*']),
44-
packages=find_packages(exclude=["test", "tests"]),
36+
packages=find_packages(include=['touroptimizer_py_client', 'util', 'util.*', 'examples', 'examples.*']),
4537
include_package_data=True,
4638
long_description_content_type='text/markdown',
4739
long_description="""\
4840
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)
4941
""", # noqa: E501
5042
package_data={"touroptimizer_py_client": ["py.typed"]},
51-
)
43+
)

0 commit comments

Comments
 (0)