From a4e61c74e5d663dfe0fc9d96bb47ae1c1bd6f8e2 Mon Sep 17 00:00:00 2001 From: Clement Rouault Date: Thu, 7 Jan 2016 20:16:44 +0100 Subject: [PATCH] Adding a setup.py (this looks like a real project now :D) --- setup.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 setup.py 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