mglib/setup.py

7 lines
113 B
Python
Raw Permalink Normal View History

from setuptools import find_packages, setup
2020-04-25 10:17:48 +02:00
setup(
packages=find_packages(),
python_requires='>=3.7',
2020-04-25 10:17:48 +02:00
)