summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2013-01-26 02:00:52 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2013-01-26 02:00:52 +0100
commita24c09ddd48607342f1aaf7996084de8640005c4 (patch)
treef792e8ced53607ba3a294e6678db18464662bab8
parent06ab0122494563123606ae52ec9424c05014850d (diff)
downloadpyflakes-a24c09ddd48607342f1aaf7996084de8640005c4.tar.gz
Update maintainership information.
-rw-r--r--LICENSE1
-rwxr-xr-xsetup.py11
2 files changed, 7 insertions, 5 deletions
diff --git a/LICENSE b/LICENSE
index 9f1f892..cea6b2e 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,5 @@
Copyright 2005-2011 Divmod, Inc.
+Copyright 2013 Florent Xicluna
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
diff --git a/setup.py b/setup.py
index 2139336..c793b76 100755
--- a/setup.py
+++ b/setup.py
@@ -1,17 +1,18 @@
#!/usr/bin/env python
-# Copyright 2005-2011 Divmod, Inc. See LICENSE file for details
+# Copyright 2005-2011 Divmod, Inc.
+# Copyright 2013 Florent Xicluna. See LICENSE file for details
from distutils.core import setup
setup(
name="pyflakes",
license="MIT",
- version="0.5.0",
+ version="0.6.a0",
description="passive checker of Python programs",
author="Phil Frost",
author_email="indigo@bitglue.com",
- maintainer="Divmod developers",
- maintainer_email="divmod-dev@lists.launchpad.net",
+ maintainer="Florent Xicluna",
+ maintainer_email="florent.xicluna@gmail.com",
url="https://launchpad.net/pyflakes",
packages=["pyflakes", "pyflakes.scripts", "pyflakes.test"],
scripts=["bin/pyflakes"],
@@ -28,4 +29,4 @@ modules with side effects. It's also much faster.""",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Utilities",
- ])
+ ])