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

Unified Diff: infra_libs/setup.py

Issue 2129103004: Add setup.py to infra_libs (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 4 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: infra_libs/setup.py
diff --git a/infra_libs/setup.py b/infra_libs/setup.py
new file mode 100644
index 0000000000000000000000000000000000000000..a47f7359e463294d7861bb3eb7325f4763ac0dec
--- /dev/null
+++ b/infra_libs/setup.py
@@ -0,0 +1,21 @@
+# 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='Time series monitoring library',
+ long_description='Time series monitoring library',
+ classifiers=[
+ 'Programming Language :: Python :: 2.7',
+ ],
+ packages=find_packages(exclude=['*.test']),
+ # google.protobuf - what package is that?
+ install_requires=['googleapiclient', 'oauth2client', 'protobuf'],
+ package_data={
+ '': ['*.md', '*.proto'],
+ },
+)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698