view setup.py @ 1284:8e30c9a6ac6f

removed old example using KLT library by Stan Birchfield (not available anymore)
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Wed, 17 Jul 2024 12:28:01 -0400
parents afdbfba94fbc
children 5ac26907e3c3
line wrap: on
line source

import setuptools

with open('README') as file:
    long_description = file.read()
    
setuptools.setup(
    name='trafficintelligence',
    version='0.2.9',
    author='Nicolas Saunier',
    author_email='[email protected]',
    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",
    ],
)