view setup.py @ 1037:6a6c37eb3a74

added function to load prototype assignments
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Tue, 03 Jul 2018 23:58:16 -0400
parents 0d7e5e290ea3
children d24deb61f550
line wrap: on
line source

import setuptools

with open('README') as file:
    long_description = file.read()

setuptools.setup(
    name='trafficintelligence',
    version='0.2.2',
    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,
    classifiers=(
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ),
)