diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..4653d6b --- /dev/null +++ b/setup.py @@ -0,0 +1,19 @@ +from setuptools import setup +# -*- coding: utf-8 -*- + +PKG_NAME = "PythonForWindows" +VERSION = "0.1" + + +setup( + name = PKG_NAME, + version = VERSION, + author = 'Hakril', + author_email = 'none', + description = 'Python wrapper around parts of Windows', + license = 'BSD', + keywords = 'windows python', + url = '', + py_modules= ['windows'], + packages = ['windows'], +) \ No newline at end of file