view setup.py @ 1102:cdf1773ba89e

corrected bug
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Wed, 27 Feb 2019 16:28:08 -0500
parents 3945d239634e
children 77ce1cb3c868
line wrap: on
line source

import setuptools

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