-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.py
40 lines (39 loc) · 1.22 KB
/
package.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
37
38
39
40
# Inspired by npm's package.json file
name = 'spockpy'
version = '0.1.0'
release = '0.1.0'
description = 'A Python library for hand gestures as an input interface.'
long_description = ['README.md']
keywords = ['hand', 'gesture', 'input', '']
authors = [
{ 'name': 'Achilles Rasquinha', 'email': 'achillesrasquinha@gmail.com' },
{ 'name': 'Ameya Shenoy', 'email': 'shenoy.ameya@gmail.com' }
]
maintainers = [
{ 'name': 'Achilles Rasquinha', 'email': 'achillesrasquinha@gmail.com' },
{ 'name': 'Ameya Shenoy', 'email': 'shenoy.ameya@gmail.com' }
]
license = 'Apache 2.0'
modules = [
'spockpy',
'spockpy.config',
'spockpy._util',
'spockpy.io',
'spockpy.event',
'spockpy.app',
'spockpy.app.client',
'spockpy.app.config',
'spockpy.app.server',
'spockpy.app.views'
]
test_modules = [
'spockpy.test'
]
homepage = 'https://achillesrasquinha.github.io/spockpy'
github_username = 'achillesrasquinha'
github_repository = 'spockpy'
github_url = '{baseurl}/{username}/{repository}'.format(
baseurl = 'https://github.com',
username = github_username,
repository = github_repository
)