voxeldev/setup.py
2024-03-12 18:40:49 -04:00

10 lines
148 B
Python

from setuptools import setup
setup(
name='voxeldev',
version='0.0.1',
install_requires=[
'matplotlib',
'numpy'
],
)