Mercurial > hg > nsaunier > traffic-intelligence
view setup.py @ 1146:b219d5a1bb55
added code to categorize interactions
| author | Nicolas Saunier <nicolas.saunier@polymtl.ca> |
|---|---|
| date | Wed, 29 Apr 2020 01:09:55 -0400 |
| parents | 4b2a55d570c1 |
| children | fd729e8f073c |
line wrap: on
line source
import setuptools with open('README') as file: long_description = file.read() setuptools.setup( name='trafficintelligence', version='0.2.5', 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", ), )
