walker: drop path categories
[mdis.git] / setup.py
index 7f1a1763ca9cebc7bc16576d353d3284ee5d3c7d..85a50a47ea2fd04339d12794340e2affdb0f5768 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,37 @@
 from setuptools import setup
 
+project = {
+    "name": "mdis",
+    "author": "Dmitry Selyutin",
+    "author_email": "ghostmansd@gmail.com",
+    "version": "0.5.2",
+    "keywords": [
+        "dispatch",
+        "dispather",
+        "map",
+        "iterator",
+        "iterable",
+        "visitor",
+        "walker",
+    ],
+    "description": "Python dispatching library",
+    "classifiers": [
+        "Development Status :: 2 - Pre-Alpha",
+        "Intended Audience :: Developers",
+        "Topic :: Software Development :: Libraries",
+        "Topic :: Software Development :: Libraries :: Python Modules",
+        "Programming Language :: Python :: 3",
+        "Programming Language :: Python :: 3 :: Only",
+        "License :: OSI Approved :: BSD License",
+        "Operating System :: OS Independent",
+    ],
+    "packages": [
+        "mdis",
+    ],
+    "package_dir": {
+        "": "src",
+    },
+}
+
 if __name__ == "__main__":
-    setup()
+    setup(**project)