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

Unified Diff: packages/infra_libs/setup.py

Issue 2179853002: Added packages/infra_libs as the first Python package. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Final rebase (no actual changes) Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « packages/infra_libs/infra_libs/utils.py ('k') | test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/infra_libs/setup.py
diff --git a/packages/infra_libs/setup.py b/packages/infra_libs/setup.py
new file mode 100644
index 0000000000000000000000000000000000000000..b3c3f81a5a59c0505e1be3a373ed39f29b582ecb
--- /dev/null
+++ b/packages/infra_libs/setup.py
@@ -0,0 +1,20 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+from setuptools import setup, find_packages
+
+setup(
+ name='infra_libs',
+ version='1.1.0',
+ description='Chrome Infra Libraries',
+ long_description='Chrome Infra Libraries',
+ classifiers=[
+ 'Programming Language :: Python :: 2.7',
+ ],
+ packages=find_packages(exclude=['*.test']),
+ install_requires=['googleapiclient', 'oauth2client', 'protobuf'],
+ package_data={
+ '': ['*.md', '*.proto'],
+ },
+)
« no previous file with comments | « packages/infra_libs/infra_libs/utils.py ('k') | test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698