summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Kluyver <thomas@kluyver.me.uk>2020-10-18 15:52:22 +0100
committerThomas Kluyver <thomas@kluyver.me.uk>2020-10-18 15:52:22 +0100
commit66fb17e45e7bfb21bf5b21c388c5047c92e55b15 (patch)
tree4e58c678e477129b46a0780941d600b930b72d5c
parent3ed9244af3b1161064c36a3ab4749ef82faba2b0 (diff)
Use setuptools for packaging
-rw-r--r--.gitignore1
-rwxr-xr-xsetup.py15
2 files changed, 8 insertions, 8 deletions
diff --git a/.gitignore b/.gitignore
index ca4da3a..70f731a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,7 @@
__pycache__
build/
_build/
+*.egg-info/
dist/
MANIFEST
.coverage
diff --git a/setup.py b/setup.py
index cb1f912..6639b2e 100755
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
-from distutils.core import setup
+from setuptools import setup
setup( name = "pyxdg",
version = "0.26",
@@ -10,11 +10,10 @@ setup( name = "pyxdg",
url = "http://freedesktop.org/wiki/Software/pyxdg",
packages = ['xdg'],
classifiers = [
- "License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
- "Programming Language :: Python :: 2.6",
- "Programming Language :: Python :: 2.7",
- "Programming Language :: Python :: 3",
- "Topic :: Desktop Environment",
- ],
- )
+ "License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
+ "Programming Language :: Python :: 2.7",
+ "Programming Language :: Python :: 3",
+ "Topic :: Desktop Environment",
+ ],
+)