view setup.py @ 1169:9f7a4a026dab

correcting bug in classify objects that ignored the parameter for centile aggregation of speed, if used in classifier.cfg (updated pip version)
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Mon, 19 Jul 2021 11:25:16 -0400
parents f67b4f892195
children afdbfba94fbc
line wrap: on
line source

import setuptools

with open('README') as file:
    long_description = file.read()
    
setuptools.setup(
    name='trafficintelligence',
    version='0.2.8',
    author='Nicolas Saunier',
    author_email='nicolas.saunier@polymtl.ca',
    url='https://bitbucket.org/Nicolas/trafficintelligence',
    packages=setuptools.find_packages(),
    description='Python modules of the Traffic Intelligence project',
    long_description=long_description,
    license = 'MIT License',
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
)