Mercurial > hg > nsaunier > traffic-intelligence
view setup.py @ 1306:4bc0651d91f9 default tip
bug corrected generating last velocity twice and saving it (not saved, duplicated at loading time
| author | Nicolas Saunier <nicolas.saunier@polymtl.ca> |
|---|---|
| date | Mon, 30 Mar 2026 15:31:34 -0400 |
| parents | 5ac26907e3c3 |
| children |
line wrap: on
line source
import setuptools with open('README') as file: long_description = file.read() setuptools.setup( name='trafficintelligence', version='0.2.10', author='Nicolas Saunier', author_email='[email protected]', url='https://trafficintelligence.confins.net', 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", ], )
