Skip to content

Migrate setup.py scripts to 15.9 #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion pkg/000_bootstrapping/cstraining.web/setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
from cdb.comparch.pkgtools import setup
from setuptools import setup, find_namespace_packages
from setuptools_ce.build import build

setup(
name="cstraining.web",
version="1.0.0",
cmdclass={"build": build},
setup_requires=["setuptools-ce"],
install_requires=['cs.platform', 'cs.web', 'cs.documents'],
docsets=[
# Add a relative path for each documentation set in this package
Expand Down
5 changes: 4 additions & 1 deletion pkg/001_configuring_app/cstraining.web/setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
from cdb.comparch.pkgtools import setup
from setuptools import setup, find_namespace_packages
from setuptools_ce.build import build

setup(
name="cstraining.web",
version="1.0.0",
cmdclass={"build": build},
setup_requires=["setuptools-ce"],
install_requires=['cs.platform', 'cs.web', 'cs.documents'],
docsets=[
# Add a relative path for each documentation set in this package
Expand Down
5 changes: 4 additions & 1 deletion pkg/002_developing_components/cstraining.web/setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
from cdb.comparch.pkgtools import setup
from setuptools import setup, find_namespace_packages
from setuptools_ce.build import build

setup(
name="cstraining.web",
version="1.0.0",
cmdclass={"build": build},
setup_requires=["setuptools-ce"],
install_requires=['cs.platform', 'cs.web', 'cs.documents'],
docsets=[
"doc/training_manual/en"
Expand Down
5 changes: 4 additions & 1 deletion pkg/003_stateful_components/cstraining.web/setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
from cdb.comparch.pkgtools import setup
from setuptools import setup, find_namespace_packages
from setuptools_ce.build import build

setup(
name="cstraining.web",
version="1.0.0",
cmdclass={"build": build},
setup_requires=["setuptools-ce"],
install_requires=['cs.platform', 'cs.web', 'cs.documents'],
docsets=[
"doc/training_manual/en"
Expand Down
5 changes: 4 additions & 1 deletion pkg/004_backend_communication/cstraining.web/setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
from cdb.comparch.pkgtools import setup
from setuptools import setup, find_namespace_packages
from setuptools_ce.build import build

setup(
name="cstraining.web",
version="1.0.0",
cmdclass={"build": build},
setup_requires=["setuptools-ce"],
install_requires=['cs.platform', 'cs.web', 'cs.documents'],
docsets=[
"doc/training_manual/en"
Expand Down
5 changes: 4 additions & 1 deletion pkg/005_custom_application/cstraining.web/setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
from cdb.comparch.pkgtools import setup
from setuptools import setup, find_namespace_packages
from setuptools_ce.build import build

setup(
name="cstraining.web",
version="1.0.0",
cmdclass={"build": build},
setup_requires=["setuptools-ce"],
install_requires=['cs.platform', 'cs.web', 'cs.documents'],
docsets=[
"doc/training_manual/en"
Expand Down
5 changes: 4 additions & 1 deletion pkg/006_additional_content/cstraining.web/setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
from cdb.comparch.pkgtools import setup
from setuptools import setup, find_namespace_packages
from setuptools_ce.build import build

setup(
name="cstraining.web",
version="1.0.0",
cmdclass={"build": build},
setup_requires=["setuptools-ce"],
install_requires=['cs.platform', 'cs.web', 'cs.documents'],
docsets=[
"doc/training_manual/en"
Expand Down