-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (54 loc) · 2.53 KB
/
setup.py
File metadata and controls
56 lines (54 loc) · 2.53 KB
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
from setuptools import setup, find_packages
import os
import subprocess
import sys
print("PBR pipeline will now be setup for your system.")
print("If you would like to compile the C++ addon please follow these instructions before continuing:")
print("https://github.com/tobspr/RenderPipeline/wiki/Building-the-CPP-Modules")
input("Press enter to continue")
os.chdir('spacedrive/renderpipeline')
subprocess.call([sys.executable, "setup.py"])
os.chdir('../..')
setup(name='SpaceDrive',
version='2.0',
description='Panda3D Space Game Engine. Requires sandbox',
author='croxis',
author_email='croxis@gmail.com',
url='http://croxis.net/',
install_requires=[
'pyyaml'
],
package_data={
''
'spacedrive': ['Shader/Planet/*.glsl',
'Shader/Scattering/*.include',
'Shader/Star/*.glsl',
'Skybox/*.egg',
'renderpipeline/config/*.yaml',
'renderpipeline/config/*.prc',
'renderpipeline/data/install.flag',
'renderpipeline/data/*/*.png',
'renderpipeline/data/builtin_models/skybox/*.*',
'renderpipeline/data/default_cubemap/*.*',
'renderpipeline/data/default_cubemap/*/*.png',
'renderpipeline/data/environment_brdf/*.*',
'renderpipeline/data/environment_brdf/*/*.*',
'renderpipeline/data/film_grain/*.*',
'renderpipeline/data/font/*.*',
'renderpipeline/data/gui/*.*',
'renderpipeline/data/ies_profiles/*.ies',
'renderpipeline/data/ies_profiles/*.IES',
'renderpipeline/data/InternalModels/*.bam',
'renderpipeline/data/*/*.jpg',
'renderpipeline/effects/*.yaml',
'renderpipeline/rpcore/native/*.flag',
'renderpipeline/rpcore/native/*.so',
'renderpipeline/rpcore/shader/*.*',
'renderpipeline/rpcore/shader/*/*.*',
'renderpipeline/rpplugins/*/*.*',
'renderpipeline/rpplugins/*/*/*.*',
'renderpipeline/rpplugins/*/*/*/*.*',]
},
packages=find_packages(),
include_package_data=True,
)