Bumping version for release.
[PyCIM.git] / setup.py
blob7edd805d43accfa05ba46c1fa4729389e4f66be0
1 import os
2 from setuptools import setup, find_packages
4 # Read the long description from the README.
5 thisdir = os.path.abspath(os.path.dirname(__file__))
6 f = open(os.path.join(thisdir, "README"))
7 kwds = {"long_description": f.read()}
8 f.close()
10 setup(name="PyCIM",
11 version="14.15.1",
12 author="Richard Lincoln",
13 author_email="r.w.lincoln@gmail.com",
14 description="Python implementation of the Common Information Model.",
15 license="LGPL",
16 url="http://github.com/rwl/PyCIM",
17 include_package_data=False,
18 packages=find_packages(),
19 zip_safe=True,
20 **kwds)