Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
engine-api
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AURA
engine-api
Commits
dee4315c
Commit
dee4315c
authored
2 years ago
by
David Trattnig
Browse files
Options
Downloads
Patches
Plain Diff
chore: remove unused setup.py
parent
b71dfdd9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.py
+0
-49
0 additions, 49 deletions
setup.py
with
0 additions
and
49 deletions
setup.py
deleted
100644 → 0
+
0
−
49
View file @
b71dfdd9
#
# Aura Engine API (https://gitlab.servus.at/aura/engine-api)
#
# Copyright (C) 2020 - The Aura Engine Team.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from
setuptools
import
find_packages
,
setup
NAME
=
"
engine-api
"
VERSION
=
"
0.1.0
"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES
=
[
"
connexion
"
]
setup
(
name
=
NAME
,
version
=
VERSION
,
description
=
"
AURA Engine API
"
,
author_email
=
"
david.trattnig@subsquare.at
"
,
url
=
""
,
keywords
=
[
"
OpenAPI
"
,
"
AURA Engine API
"
],
install_requires
=
REQUIRES
,
packages
=
find_packages
(),
package_data
=
{
""
:
[
"
src/aura_engine_api/rest/swagger/swagger.yaml
"
]},
include_package_data
=
True
,
entry_points
=
{
"
console_scripts
"
:
[
"
src.app=src.app.__main__:main
"
]},
long_description
=
"""
\
This is the AURA Engine API. Read more at https://gitlab.servus.at/aura/engine.
"""
,
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment