summer_course_2024/pyproject.toml

53 lines
1.2 KiB
TOML
Raw Normal View History

2023-01-24 10:51:50 -05:00
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cerc_hub"
2023-01-26 11:10:15 -05:00
version = "0.1.7.1"
2023-01-24 10:51:50 -05:00
description = "CERC Hub consist in a set of classes (Central data model), importers and exporters to help researchers to create better and sustainable cities"
readme = "README.md"
authors = [{ name = "Guillermo Gutierrez", email = "Guillermo.GutierrezMorote@concordia.ca" }]
license = { file = "LICENSE.md" }
classifiers = [
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["city", "hub", "cerc"]
dependencies = [
"xmltodict",
"numpy",
"trimesh",
"pyproj",
"pandas",
"requests",
"esoreader",
"geomeppy",
"PyWavefront",
"xlrd",
"openpyxl",
"networkx",
"parseidf==1.0.0",
"ply",
"rhino3dm==7.7.0",
"scipy",
"PyYAML",
"pyecore==0.12.2",
"python-dotenv",
"SQLAlchemy",
"bcrypt==4.0.1",
"shapely",
"geopandas",
"triangle"
]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = ["pip-tools", "pytest"]
[project.urls]
Homepage = "https://rs-loy-gitlab.concordia.ca/Guille/hub"