-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
83 lines (76 loc) · 2.3 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
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.8.8',
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 = '[email protected]',
url = 'https://github.com/nir/jupylet',
download_url = 'https://github.com/nir/jupylet/archive/v0.8.8.tar.gz',
keywords = [
'reinforcement learning',
'deep learning',
'synthesizers',
'moderngl',
'children',
'jupyter',
'python',
'games',
'midi',
'kids',
'RL',
],
python_requires='>=3.6',
install_requires=[
'glfw',
'mido',
'tqdm',
'jedi==0.17.2',
'numpy ; platform_system!="Windows"',
'numpy==1.19.3 ; platform_system=="Windows"',
'PyGLM',
'scipy',
'pillow',
'gltflib',
'jupyter',
'moderngl',
'soundfile',
'webcolors',
'ipyevents',
'ipywidgets',
'matplotlib',
'sounddevice',
'python-rtmidi ; platform_system!="Linux"',
'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.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)