diff options
author | Marvin Borner | 2019-05-27 19:25:47 +0200 |
---|---|---|
committer | Marvin Borner | 2019-05-27 19:25:47 +0200 |
commit | b4f1926b48cb5a6016f03c3d7ca7b2e196e8f767 (patch) | |
tree | eb26f57362b891149eed4438762d3b13a06d87eb /setup.py |
Initial commit
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..604e92e --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +from setuptools import setup + +try: + long_description = open("README.md").read() +except IOError: + long_description = "" + +setup( + name="FreedoWM", + version="0.1.dev0", + description="A free window manager", + license="BSD", + author="melvin", + install_requires="Xlib", + py_modules=["freedowm"], + entry_points={ + 'console_scripts': ['freedowm = freedowm:main', ] + }, + long_description=long_description, + classifiers=[ + "Programming Language :: Python", + "Programming Language :: Python :: 3.7", + ] +) |