view setup.py @ 1278:8e61ff3cd503 default tip

correct bug to take into account first frame num in config, and other related bugs in dltrack.py
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Thu, 27 Jun 2024 15:31:36 -0400
parents afdbfba94fbc
children
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='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",
    ],
)