-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 730 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="pyridescence",
version="1.0.1",
author="Kenji Koide",
author_email="k.koide@aist.go.jp",
description="3D visualization library for rapid prototyping of 3D algorithms",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
cmake_source_dir=".",
packages=['pyridescence_data', 'pyridescence_data.texture', 'pyridescence_data.shader', 'pyridescence_data.models'],
package_dir={'pyridescence_data': 'data'},
include_package_data=True,
python_requires=">=3.7",
install_requires=["numpy"],
)