-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 846 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (30 loc) · 846 Bytes
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
#!/usr/bin/env python3
# setup.py
from setuptools import setup
setup(
name='game_of_key',
version ='1.0',
description = 'The game made your keyboard, this is amazing!',
long_description = '''
Markdown is not supported here, see this document in:
https://TiagoDanin.github.io/gameofkey/
''',
author = 'Tiago Danin',
author_email = 'TiagoDanin@outlook.com',
license = 'MIT',
url = 'https://TiagoDanin.github.io/gameofkey/',
install_requires= [
'pyautogui',
],
classifiers = [
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
keywords = 'game led leds keyboard key'
)