-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 936 Bytes
/
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
from setuptools import setup
setup(
name="dent",
version="0.0.15",
description="A 3D game engine",
author="Robert Spencer",
license="MIT",
packages=["dent", "dent.Shaders", "dent.pycfg"],
package_data={"dent.Shaders": ["*/*/*.shd"]},
scripts=[
"bin/dent-messages",
"bin/dent-init",
"bin/dent-assets",
],
install_requires=[
"setuptools>=36.0.1",
"numpy>=1.13.1",
"imgui==0.0.2",
"Pillow>=4.3.0",
"PyOpenGL>=3.1.1a1",
"PyYAML>=3.12",
"scipy>=1.0.0",
"pyassimp==4.0.1",
"PyOpenAL>=0.7.0a1",
"imageio>=2.3.0",
],
dependency_links=[
"git+https://github.com/assimp/assimp.git@f4fd5840b143b5e57cbb820e9804386d414b6bf3#egg=pyassimp-4.1.0&subdirectory=port/PyAssimp"
],
zip_safe=False,
test_suite="nose.collector",
tests_require=["nose"],
python_requires='>=3',
)