summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@jelmer.uk>2019-05-28 23:43:33 +0000
committerJelmer Vernooij <jelmer@jelmer.uk>2019-05-28 23:43:33 +0000
commita20955d84e77ceb0020ee4af39ed0947986f7589 (patch)
tree32d587854c2f569e0b02cf6d026be0a71d51fd8e
parent2db365437402671944409e7c6ce2318efd9c45ed (diff)
downloadpython-fastimport-git-a20955d84e77ceb0020ee4af39ed0947986f7589.tar.gz
Revert "Add setup.cfg."
This reverts commit 5cef9e037b7d7b37f58f522ac9ea4e343e6a1dff.
-rw-r--r--setup.cfg23
-rwxr-xr-xsetup.py21
2 files changed, 21 insertions, 23 deletions
diff --git a/setup.cfg b/setup.cfg
index 6860d66..8b13789 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,22 +1 @@
-[metadata]
-name = fastimport
-author = Canonical Ltd
-author_email = bazaar@lists.canonical.com
-maintainer = Jelmer Vernooij
-maintainer_email = jelmer@jelmer.uk
-summary = VCS fastimport/fastexport parser
-home-page = https://github.com/jelmer/python-fastimport
-license = file:COPYING
-description-file = README.md
-classifiers =
- Development Status :: 4 - Beta
- License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
- Programming Language :: Python :: 2.7
- Programming Language :: Python :: 3.4
- Programming Language :: Python :: 3.5
- Programming Language :: Python :: 3.6
- Programming Language :: Python :: 3.7
- Programming Language :: Python :: Implementation :: CPython
- Programming Language :: Python :: Implementation :: PyPy
- Operating System :: POSIX
- Topic :: Software Development :: Version Control
+
diff --git a/setup.py b/setup.py
index afe3cde..c67cb1a 100755
--- a/setup.py
+++ b/setup.py
@@ -3,11 +3,30 @@ from distutils.core import setup
version = "0.9.8"
-setup(version=version,
+setup(name="fastimport",
+ description="VCS fastimport/fastexport parser",
+ version=version,
+ author="Canonical Ltd",
+ author_email="bazaar@lists.canonical.com",
+ maintainer="Jelmer Vernooij",
+ maintainer_email="jelmer@jelmer.uk",
+ license="GNU GPL v2 or later",
+ url="https://github.com/jelmer/python-fastimport",
packages=['fastimport', 'fastimport.tests', 'fastimport.processors'],
scripts=[
'bin/fast-import-query',
'bin/fast-import-filter',
'bin/fast-import-info',
],
+ classifiers=[
+ 'Development Status :: 4 - Beta',
+ 'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
+ 'Programming Language :: Python :: 2.7',
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: Implementation :: CPython',
+ 'Programming Language :: Python :: Implementation :: PyPy',
+ 'Operating System :: POSIX',
+ 'Topic :: Software Development :: Version Control',
+ ],
)