Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
xml-validation
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
vaclab
xml-validation
Commits
cc2f9f30
Commit
cc2f9f30
authored
4 years ago
by
Rolf Niepraschk
Browse files
Options
Downloads
Patches
Plain Diff
...
parent
32b1404d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.py
+18
-21
18 additions, 21 deletions
setup.py
with
18 additions
and
21 deletions
setup.py
+
18
−
21
View file @
cc2f9f30
...
@@ -42,8 +42,7 @@ setup(
...
@@ -42,8 +42,7 @@ setup(
# This is a one-line description or tagline of what your project does. This
# This is a one-line description or tagline of what your project does. This
# corresponds to the "Summary" metadata field:
# corresponds to the "Summary" metadata field:
# https://packaging.python.org/specifications/core-metadata/#summary
# https://packaging.python.org/specifications/core-metadata/#summary
description
=
'
REST service for the validation of
"
xml
"
against a XML Schema
'
,
description
=
'
REST service for the validation of
"
xml
"
against a XML Schema
'
,
# Optional
# Optional
# This is an optional longer description of your project that represents
# This is an optional longer description of your project that represents
# the body of text which users will see when they visit PyPI.
# the body of text which users will see when they visit PyPI.
...
@@ -75,7 +74,7 @@ setup(
...
@@ -75,7 +74,7 @@ setup(
# This should be your name or the name of the organization which owns the
# This should be your name or the name of the organization which owns the
# project.
# project.
author
=
'
PTB
'
,
# Optional
author
=
'
Rolf Niepraschk
'
,
# Optional
# This should be a valid email address corresponding to the author listed
# This should be a valid email address corresponding to the author listed
# above.
# above.
...
@@ -115,11 +114,11 @@ setup(
...
@@ -115,11 +114,11 @@ setup(
# Note that this is a list of additional keywords, separated
# Note that this is a list of additional keywords, separated
# by commas, to be used to assist searching for the distribution in a
# by commas, to be used to assist searching for the distribution in a
# larger catalog.
# larger catalog.
keywords
=
'
xml, xsd, d
evelopment
'
,
# Optional
keywords
=
'
xml, xsd, d
cc
'
,
# Optional
# When your source code is in a subdirectory under the project root, e.g.
# When your source code is in a subdirectory under the project root, e.g.
# `src/`, it is necessary to specify the `package_dir` argument.
# `src/`, it is necessary to specify the `package_dir` argument.
###package_dir={'': 'src'}, # Optional
###
package_dir={'': 'src'}, # Optional
# You can just specify package directories manually here if your project is
# You can just specify package directories manually here if your project is
# simple. Or you can use find_packages().
# simple. Or you can use find_packages().
...
@@ -130,10 +129,12 @@ setup(
...
@@ -130,10 +129,12 @@ setup(
#
#
# py_modules=["my_module"],
# py_modules=["my_module"],
#
#
packages
=
find_packages
(
where
=
'
src
'
),
# Required
packages
=
find_packages
(
exclude
=
[
'
bin
'
,
packages
=
find_packages
(
exclude
=
[
'
bin
'
,
'
examples
'
,
'
examples
'
,
'
include
'
,
'
include
'
,
'
Kritik
'
,
'
Kritik
'
,
'
Koch
'
,
'
templates
'
'
templates
'
]),
]),
...
@@ -149,11 +150,7 @@ setup(
...
@@ -149,11 +150,7 @@ setup(
#
#
# For an analysis of "install_requires" vs pip's requirements files see:
# For an analysis of "install_requires" vs pip's requirements files see:
# https://packaging.python.org/en/latest/requirements.html
# https://packaging.python.org/en/latest/requirements.html
install_requires
=
[
'
flask
'
,
install_requires
=
[
'
peppercorn
'
],
# Optional
'
flask-cors
'
,
'
requests
'
,
'
xmlschema
'
],
# List additional groups of dependencies here (e.g. development
# List additional groups of dependencies here (e.g. development
# dependencies). Users will be able to install these using the "extras"
# dependencies). Users will be able to install these using the "extras"
...
@@ -163,23 +160,23 @@ setup(
...
@@ -163,23 +160,23 @@ setup(
#
#
# Similar to `install_requires` above, these must be valid existing
# Similar to `install_requires` above, these must be valid existing
# projects.
# projects.
#
extras_require={ # Optional
#extras_require={ # Optional
# 'dev': ['check-manifest'],
# 'dev': ['check-manifest'],
# 'test': ['coverage'],
# 'test': ['coverage'],
#
},
#},
# If there are data files included in your packages that need to be
# If there are data files included in your packages that need to be
# installed, specify them here.
# installed, specify them here.
#
package_data={ # Optional
#package_data={ # Optional
#
'sample': ['package_data.dat'],
# 'sample': ['package_data.dat'],
#
},
#},
# Although 'package_data' is the preferred approach, in some case you may
# Although 'package_data' is the preferred approach, in some case you may
# need to place data files outside of your packages. See:
# need to place data files outside of your packages. See:
# http://docs.python.org/distutils/setupscript.html#installing-additional-files
# http://docs.python.org/distutils/setupscript.html#installing-additional-files
#
#
# In this case, 'data_file' will be installed into '<sys.prefix>/my_data'
# In this case, 'data_file' will be installed into '<sys.prefix>/my_data'
#
data_files=[('my_data', ['data/data_file'])], # Optional
#data_files=[('my_data', ['data/data_file'])], # Optional
# To provide executable scripts, use entry points in preference to the
# To provide executable scripts, use entry points in preference to the
# "scripts" keyword. Entry points provide cross-platform support and allow
# "scripts" keyword. Entry points provide cross-platform support and allow
...
@@ -188,11 +185,11 @@ setup(
...
@@ -188,11 +185,11 @@ setup(
#
#
# For example, the following would provide a command called `sample` which
# For example, the following would provide a command called `sample` which
# executes the function `main` from this package when invoked:
# executes the function `main` from this package when invoked:
#
entry_points={ # Optional
entry_points
=
{
# Optional
#
'console_scripts': [
'
console_scripts
'
:
[
#
'sample=sample:main',
'
sample=sample:main
'
,
#
],
],
#
},
},
# List additional URLs that are relevant to your project as a dict.
# List additional URLs that are relevant to your project as a dict.
#
#
...
...
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