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

Unified Diff: setup.py

Issue 418643004: Copy git tooling into testing_support. (Closed) Base URL: https://chromium.googlesource.com/infra/testing/testing_support@master
Patch Set: fix scripts Created 6 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 | « README.md ('k') | testing_support/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: setup.py
diff --git a/setup.py b/setup.py
new file mode 100755
index 0000000000000000000000000000000000000000..2a6cc5f176385dc3ad2ea2b9357d3d77182d9cbb
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,39 @@
+#!/usr/bin/env python
+# Copyright 2014 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.
+
+try:
+ from setuptools import setup
+except ImportError:
+ from distutils.core import setup
+
+import ast
+
+
+def read_vars(path):
+ ret = {}
+ with open(path) as f:
+ for n in ast.walk(ast.parse(f.read())):
+ if isinstance(n, ast.Module):
+ ret['__doc__'] = ast.get_docstring(n)
+ elif isinstance(n, ast.Assign):
+ if isinstance(n.targets[0], ast.Name) and isinstance(n.value, ast.Str):
+ ret[n.targets[0].id] = n.value.s
+ return ret
+
+
+NAME = 'testing_support'
+VARS = read_vars(NAME + '/__init__.py')
+
+
+setup(
+ name=NAME,
+ version=VARS['__version__'],
+ description=VARS['__doc__'].splitlines()[0],
+ long_description=open('README.md').read(),
+ author=VARS['__author__'],
+ author_email=VARS['__email__'],
+ url=VARS['__url__'],
+ packages=[NAME],
+)
« no previous file with comments | « README.md ('k') | testing_support/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698