Adding project files.
[PyCIM.git] / setup.py
blob158eb8f8ba9e28d5ddb4812d7af2d31926998ef4
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.2",
12 author="Richard Lincoln",
13 author_email="r.w.lincoln@gmail.com",
14 description="Python implementation of the Common Information Model.",
15 license="MIT",
16 url="http://www.pycim.com/",
17 include_package_data=False,
18 packages=find_packages(),
19 zip_safe=True,
20 **kwds)
22 # python setup.py sdist bdist_egg bdist_wininst bdist_msi upload