Files
IfcOpenShell/src/ifcopenshell-python/setup.py
T
2023-02-16 15:01:19 +11:00

8 lines
244 B
Python

from setuptools import setup
from pathlib import Path
cwd = Path(__file__).parent
long_description = (cwd / "README.md").read_text()
setup(name="ifcopenshell", long_description=long_description, long_description_content_type="text/markdown")