forked from pokepetter/ursina
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 839 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 find_packages, setup
with open("README.md", encoding="UTF-8") as f:
long_desc = f.read()
setup(
name='ursina',
description='An easy to use game engine/framework for python.',
long_description=long_desc,
long_description_content_type="text/markdown",
version='5.3.0',
url='https://github.com/pokepetter/ursina',
author='Petter Amland',
author_email='pokepetter@gmail.com',
license='MIT',
keywords='game development',
packages=find_packages(),
include_package_data=True,
install_requires=[
'panda3d',
'panda3d-gltf',
'pillow',
'pyperclip',
'screeninfo',
],
extras_require={'extras': [
'numpy',
'imageio',
'psd-tools3',
'psutil',
],
},
python_requires='>=3.10',
)