-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
35 lines (31 loc) · 1.23 KB
/
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
33
34
35
#!/usr/bin/env python
# Special thanks to Hynek Schlawack for providing excellent documentation:
#
# https://hynek.me/articles/sharing-your-labor-of-love-pypi-quick-and-dirty/
import os
from setuptools import setup
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name='qmk_compiler_worker',
version='0.0.1',
description='Library for turning keyboard-layout-editor.com raw code into X/Y coordinates',
long_description='\n\n'.join((read('README.md'), read('AUTHORS.md'))),
url='https://github.com/qmk/qmk_compiler_worker',
license='all_rights_reserved',
author='skullY',
author_email='[email protected]',
install_requires=['rq'],
py_modules=['cleanup_storage', 'discord', 'qmk_compiler', 'qmk_commands', 'qmk_redis', 'qmk_storage', 'qmk_errors', 'update_kb_redis'],
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: Restrictive',
'Topic :: System :: Systems Administration',
],
)