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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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")