-
Notifications
You must be signed in to change notification settings - Fork 71
/
setup.py
33 lines (29 loc) · 1.1 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
project_name = 'taichi_elements'
version = '0.0.1'
import setuptools
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Topic :: Multimedia :: Graphics',
'Topic :: Games/Entertainment :: Simulation',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
packages = setuptools.find_packages()
setuptools.setup(name=project_name,
packages=packages,
version=version,
description='Taichi Elements',
author='Taichi Elements Developers',
author_email='[email protected]',
url='https://github.com/taichi-dev/taichi_elements',
install_requires=[
'taichi>=0.6.27',
],
keywords=['graphics', 'simulation'],
license='MIT',
include_package_data=True,
classifiers=classifiers)