-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (36 loc) · 1.06 KB
/
setup.py
File metadata and controls
37 lines (36 loc) · 1.06 KB
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
33
34
35
36
37
from setuptools import setup
import glob
setup(
name='freetile',
version='v0.1.3',
description='freely tiling script for X',
url='http://github.com/rbn42/freetile',
download_url='https://github.com/rbn42/freetile/archive/v0.1.3.tar.gz',
author='rbn42',
author_email='bl100@students.waikato.ac.nz',
license='MIT',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: X11 Applications',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Desktop Environment :: Window Managers',
],
keywords=['window', 'tiling', 'xorg'],
packages=['freetile', 'freetile.helper'],
install_requires=[
'docopt',
'ewmh',
'xcffib',
'python-xlib',
'setproctitle',
],
data_files=[
('share/doc/visualbar/config', glob.glob('doc/config/*')),
],
entry_points={
'console_scripts': [
'freetile=freetile.__main__:main',
]
})