walker: drop path categories
[mdis.git] / setup.py
1 from setuptools import setup
2
3 project = {
4 "name": "mdis",
5 "author": "Dmitry Selyutin",
6 "author_email": "ghostmansd@gmail.com",
7 "version": "0.5.2",
8 "keywords": [
9 "dispatch",
10 "dispather",
11 "map",
12 "iterator",
13 "iterable",
14 "visitor",
15 "walker",
16 ],
17 "description": "Python dispatching library",
18 "classifiers": [
19 "Development Status :: 2 - Pre-Alpha",
20 "Intended Audience :: Developers",
21 "Topic :: Software Development :: Libraries",
22 "Topic :: Software Development :: Libraries :: Python Modules",
23 "Programming Language :: Python :: 3",
24 "Programming Language :: Python :: 3 :: Only",
25 "License :: OSI Approved :: BSD License",
26 "Operating System :: OS Independent",
27 ],
28 "packages": [
29 "mdis",
30 ],
31 "package_dir": {
32 "": "src",
33 },
34 }
35
36 if __name__ == "__main__":
37 setup(**project)