-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 794 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 794 Bytes
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
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"
],
jsdoc=[
"doc/training_manual/en"
],
cdb_modules=[
# List the package's modules in the correct (initialization) order as
# computed by cdb.comparch topological sort. This list goes into
# `cdb_modules.txt` in the EGG-INFO.
"cstraining.web"
],
cdb_services=[
# List the services of this packages by their class names. This list
# goes into `cdb_services.txt` in EGG-INFO.
],
)