-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1.18 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
36
#!/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, find_packages, Command
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='kle_manager',
version='0.0.1',
description='Web app for browsing stored keyboard-layout-editor.com layouts',
long_description='\n\n'.join((read('README.md'), read('AUTHORS.md'))),
url='https://github.com/skullydazed/kle_manager',
license='all_rights_reserved',
author='skullY',
author_email='[email protected]',
packages=find_packages(),
#scripts=['bin/example-numpad'],
include_package_data=True,
install_requires=['flask', 'requests'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: Restrictive',
'Topic :: System :: Systems Administration',
],
)