-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 730 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (18 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
setup(name='newm',
version='0.3',
description='newm - Wayland compositor',
url="https://github.com/jbuchermn/newm",
author='Jonas Bucher',
author_email='j.bucher.mn@gmail.com',
packages=['newm', 'newm.helper', 'newm.resources', 'newm.overlay', 'newm.widget', 'newm.dbus', 'newm.gestures', 'newm.gestures.provider', 'newm_panel_basic'],
package_data={'newm.resources': ['wallpaper.jpg', 'newm.desktop']},
scripts=['bin/start-newm', 'bin/.start-newm', 'bin/newm-cmd', 'bin/newm-panel-basic'],
install_requires=[
'pycairo',
'psutil',
'python-pam',
'pyfiglet',
'dasbus',
'thefuzz'
])