forked from lightmetrica/lightmetrica-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 1.05 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
from setuptools import setup, find_packages
setup(
name='lightmetrica-py',
version='3.0.0',
description='A research-oriented renderer',
author='Hisanari Otsu',
author_email='[email protected]',
url='https://github.com/hi2p-perim/lightmetrica-v3',
packages=find_packages(),
include_package_data=True,
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Programming Language :: C++',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License'
],
keywords='Computer graphics, Renderer',
long_description='Lightmetrica is a research-oriented renderer. The development of the framework is motivated by the goal to provide a practical environment for rendering research and development, where the researchers and developers need to tackle various challenging requirements through the development process.',
)