-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (29 loc) · 924 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup
setup(
name="ifc2graph",
python_requires='>=3.7',
version="0.0.0",
description="A tool designed to extract room topology from files following the Industry Foundation Classes (IFC) standard.",
url="https://github.com/JBjoernskov/Ifc2Graph",
keywords="ifc, graph, room topology",
author="Jakob Bjørnskov, Center for Energy Informatics SDU",
author_email="jakob.bjornskov@me.com, jabj@mmmi.sdu.dk",
license="BSD",
platforms=["Windows", "Linux"],
packages=[
"ifc2graph",
"ifc2graph.utils",
],
include_package_data=True,
install_requires=[
"ifcopenshell",
"Trimesh",
"rtree", # Used by Trimesh
"scipy", # Used by Trimesh
"pyglet", # Used by Trimesh
"NumPy",
"NetworkX",
"pydot" # Used by NetworkX
],
classifiers=["Programming Language :: Python :: 3"],
)