forked from arbalet-project/arbapps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (35 loc) · 1.9 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
37
38
39
40
41
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='arbalet_apps',
version='3.1.2',
license="GNU General Public License 3",
description="Python API for development with Arbalet LED tables (ARduino-BAsed LEd Table)",
url='http://github.com/arbalet-project',
author="Yoan Mollard",
author_email="[email protected]",
long_description=open('README.md').read(),
install_requires= ["pygame", "configparser", "bottle", "pyaudio", "zmq", "python-xlib", "numpy"], # "python-midi", "Pillow", # These packages are not Raspi-friendly
include_package_data=True,
zip_safe=False, # contains data files
classifiers=[
"Programming Language :: Python",
"Development Status :: 2 - Pre-Alpha",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Games/Entertainment",
],
packages=find_packages(),
namespace_packages = ['arbalet'],
data_files=[('arbalet/apps/tetris/music', ['arbalet/apps/tetris/music/Cailloux_-_tetris.ogg']),
('arbalet/apps/tetris/music', ['arbalet/apps/tetris/music/ExDeath_-_Another_Tetris_Remix.ogg']),
('arbalet/apps/tetris/music', ['arbalet/apps/tetris/music/Mic_-_Mic_music_tetris__.ogg']),
('arbalet/apps/lightshero/songs/Feelings', ['arbalet/apps/lightshero/songs/Feelings/guitar.ogg']),
('arbalet/apps/lightshero/songs/Feelings', ['arbalet/apps/lightshero/songs/Feelings/notes.mid']),
('arbalet/apps/lightshero/songs/Feelings', ['arbalet/apps/lightshero/songs/Feelings/song.ini']),
('arbalet/apps/lightshero/songs/Feelings', ['arbalet/apps/lightshero/songs/Feelings/song.ogg']),
('arbalet/tools/sequencer/sequences', ['arbalet/tools/sequencer/sequences/default.json']),
],
)