-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
executable file
·29 lines (25 loc) · 930 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python3
# https://docs.python.org/3.6/distributing/index.html
# https://setuptools.readthedocs.io/en/latest/setuptools.html#developer-s-guide
# https://pypi.org/pypi?%3Aaction=list_classifiers
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='xpywm',
version='1.16',
author='Hiroyuki Ohsaki',
author_email='[email protected]',
description='A simple but extensible X11 window manager written in Python',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/h-ohsaki/xpywm.git',
packages=setuptools.find_packages(),
install_requires=['Xlib'],
scripts=['xpywm'],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX',
],
)