Files
IfcOpenShell/src/ifcopenshell-python/setup.py
T

8 lines
244 B
Python
Raw Normal View History

2023-02-16 15:01:10 +11:00
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")