Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(365)

Side by Side Diff: tools/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-setuptools-namespace/setup.py

Issue 1647513002: Delete tools/telemetry. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 from setuptools import setup
2
3 setup(
4 name="nspkg",
5 version="1.0",
6 namespace_packages=['nspkg', 'nspkg.nssubpkg'],
7 packages=['nspkg', 'nspkg.nssubpkg'],
8 package_dir = {'': 'src'},
9 zip_safe=False,
10 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698