-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (42 loc) · 1.4 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (42 loc) · 1.4 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
38
39
40
41
42
43
44
45
46
47
48
#! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from xkbgroup.version import VERSION
def read_readme():
with open("README.rst") as f:
return f.read()
setup(
name="xkbgroup",
version=VERSION,
description="Query and change XKB layout state",
long_description=read_readme(),
author="Nguyen Duc My",
author_email="hcpl.prog@gmail.com",
url="https://github.com/hcpl/xkbgroup",
packages=["xkbgroup"],
package_data={"": ["LICENSE", "README.rst", "generate_bindings.sh"]},
license="MIT",
zip_safe=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: X11 Applications",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Desktop Environment :: Window Managers",
"Topic :: Software Development :: Libraries"
],
entry_points={
"console_scripts": [
"xkbgroup = xkbgroup.__main__:main"
]
},
)