-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 790 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
],
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.
],
)