view setup.py @ 1168:d71a4d174b1a

corrected potential bug with dtype in image to world projection
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Tue, 06 Jul 2021 00:28:24 -0400
parents f67b4f892195
children 9f7a4a026dab
line wrap: on
line source

import setuptools

with open('README') as file:
    long_description = file.read()
    
setuptools.setup(
    name='trafficintelligence',
    version='0.2.7',
    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",
    ],
)