summaryrefslogtreecommitdiff
path: root/test/data/__pkginfo__.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/__pkginfo__.py')
-rw-r--r--test/data/__pkginfo__.py36
1 files changed, 19 insertions, 17 deletions
diff --git a/test/data/__pkginfo__.py b/test/data/__pkginfo__.py
index d1f5731..51f36ec 100644
--- a/test/data/__pkginfo__.py
+++ b/test/data/__pkginfo__.py
@@ -20,15 +20,15 @@ __docformat__ = "restructuredtext en"
import sys
import os
-distname = 'logilab-common'
-modname = 'common'
-subpackage_of = 'logilab'
+distname = "logilab-common"
+modname = "common"
+subpackage_of = "logilab"
subpackage_master = True
numversion = (0, 63, 2)
-version = '.'.join([str(num) for num in numversion])
+version = ".".join([str(num) for num in numversion])
-license = 'LGPL' # 2.1 or later
+license = "LGPL" # 2.1 or later
description = "collection of low-level Python packages and modules used by Logilab projects"
web = "http://www.logilab.org/project/%s" % distname
mailinglist = "mailto://python-projects@lists.logilab.org"
@@ -37,19 +37,21 @@ author_email = "contact@logilab.fr"
from os.path import join
-scripts = [join('bin', 'logilab-pytest')]
-include_dirs = [join('test', 'data')]
+
+scripts = [join("bin", "logilab-pytest")]
+include_dirs = [join("test", "data")]
install_requires = []
-tests_require = ['pytz']
+tests_require = ["pytz"]
if sys.version_info < (2, 7):
- install_requires.append('unittest2 >= 0.5.1')
-if os.name == 'nt':
- install_requires.append('colorama')
-
-classifiers = ["Topic :: Utilities",
- "Programming Language :: Python",
- "Programming Language :: Python :: 2",
- "Programming Language :: Python :: 3",
- ]
+ install_requires.append("unittest2 >= 0.5.1")
+if os.name == "nt":
+ install_requires.append("colorama")
+
+classifiers = [
+ "Topic :: Utilities",
+ "Programming Language :: Python",
+ "Programming Language :: Python :: 2",
+ "Programming Language :: Python :: 3",
+]