-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
84 lines (77 loc) · 2.27 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import setuptools
with open('README.md', 'rb') as f:
long_description = f.read().decode()
setuptools.setup(
name = 'jupylet',
packages = ['jupylet', 'jupylet.audio'],
package_data={
'jupylet': ['assets/*', 'assets/*/*', 'assets/*/*/*'],
},
version = '0.9.2',
license='bsd-2-clause',
description = 'Python game programming in Jupyter notebooks.',
long_description=long_description,
long_description_content_type="text/markdown",
author = 'Nir Aides',
author_email = 'nir.8bit@gmail.com',
url = 'https://github.com/nir/jupylet',
download_url = 'https://github.com/nir/jupylet/archive/v0.9.2.tar.gz',
keywords = [
'reinforcement learning',
'deep learning',
'synthesizers',
'moderngl',
'children',
'jupyter',
'python',
'games',
'midi',
'kids',
'RL',
],
python_requires='>=3.9,<3.13',
install_requires=[
'glfw',
'mido',
'tqdm',
'jedi',
'numpy',
'PyGLM',
'scipy',
'pillow',
'gltflib',
'jupyter',
'notebook',
'moderngl',
'soundfile',
'webcolors',
'ipyevents',
'ipywidgets',
'matplotlib',
'sounddevice',
'soundcard; platform_system=="Darwin"',
'python-rtmidi',
'moderngl-window',
],
extras_require = {
'midi': ['python-rtmidi']
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Education',
'Topic :: Multimedia :: Graphics',
'Topic :: Multimedia :: Graphics :: 3D Rendering',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Sound/Audio :: MIDI',
'Topic :: Multimedia :: Sound/Audio :: Sound Synthesis',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)