-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
45 lines (43 loc) · 1.81 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="TaichiGAME",
version="0.0.3",
author="maksyuki",
author_email="[email protected]",
description="GPU Accelerated Motion Engine based on Taichi Lang",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/maksyuki/TaichiGAME",
project_urls={
'Documentation': 'https://github.com/maksyuki/TaichiGAME',
'Funding': 'https://donate.pypi.org',
'Say Thanks!': 'http://saythanks.io/to/example',
'Source': 'https://github.com/maksyuki/TaichiGAME',
'Tracker': 'https://github.com/maksyuki/TaichiGAME/issues',
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License', 'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Framework :: Robot Framework :: Library',
'Topic :: Games/Entertainment :: Simulation',
'Topic :: Multimedia :: Graphics',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Libraries :: Application Frameworks'
],
license='MIT',
keywords=['phyics engine', 'dynamics simulation', 'robot motion control'],
packages=setuptools.find_packages(exclude=['tests']),
include_package_data=True,
install_requires=['taichi'],
python_requires=">=3.7,<3.10",
)