-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (25 loc) · 861 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
30
31
32
from setuptools import setup, find_packages
setup(
name='i3-dstatus',
version='0.1.1',
author='Tony Crisci',
author_email='[email protected]',
url='https://github.com/altdesktop/i3-dstatus',
license='BSD',
description='The ultimate DIY statusline generator for i3',
long_description=open('README.rst').read(),
install_requires=['PyYAML', 'netifaces', 'i3ipc', 'requests', 'dbus-next', 'python-xlib'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
],
package_data={'i3dstatus': ['generators/*', 'interfaces/*']},
scripts=['i3-dstatus'],
entry_points={
'console_scripts': [
'i3-dstatus = i3dstatus.__main__:main'
]
},
packages=find_packages(),
)