-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
27 lines (25 loc) · 795 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
#!/usr/bin/env python
import setuptools
setuptools.setup(name='glass-input',
version='0.1',
description='Input handling (keyboard mapping) for InfiniteGlass',
long_description='Input handling (keyboard mapping) for InfiniteGlass',
long_description_content_type="text/markdown",
author='Egil Moeller',
author_email='[email protected]',
url='https://github.com/redhog/InfiniteGlass',
packages=setuptools.find_packages(),
install_requires=[
"pyyaml",
"rpdb",
"numpy",
"rectangle-packer"
],
entry_points={
'console_scripts': [
'glass-input = glass_input:main',
],
},
package_data={'glass_input': ['*.json']},
include_package_data=True
)