mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-12 02:23:34 +00:00
8 lines
244 B
Python
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")
|