packaging version working as spected

This commit is contained in:
Guille Gutierrez 2023-01-25 05:21:12 -05:00
parent 9700e5ce21
commit f5333c0975
2 changed files with 2 additions and 1 deletions

View File

@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "cerc_hub" name = "cerc_hub"
version = "0.1.6" version = "0.1.7"
description = "CERC Hub consist in a set of classes (Central data model), importers and exporters to help researchers to create better and sustainable cities" 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" readme = "README.md"
authors = [{ name = "Guillermo Gutierrez", email = "Guillermo.GutierrezMorote@concordia.ca" }] authors = [{ name = "Guillermo Gutierrez", email = "Guillermo.GutierrezMorote@concordia.ca" }]

View File

@ -28,4 +28,5 @@ setup(
('data', glob.glob('hub/data/weather/epw/*.epw')), ('data', glob.glob('hub/data/weather/epw/*.epw')),
('data', glob.glob('hub/data/weather/*.dat')) ('data', glob.glob('hub/data/weather/*.dat'))
], ],
setup_requires=['setuptools']
) )