Mercurial > hg > nsaunier > traffic-intelligence
comparison setup.py @ 1155:fd729e8f073c
changing version number and uploading new version on pypi
| author | Nicolas Saunier <nicolas.saunier@polymtl.ca> |
|---|---|
| date | Wed, 09 Sep 2020 23:47:57 -0400 |
| parents | 4b2a55d570c1 |
| children | f67b4f892195 |
comparison
equal
deleted
inserted
replaced
| 1154:2795d0e114c9 | 1155:fd729e8f073c |
|---|---|
| 3 with open('README') as file: | 3 with open('README') as file: |
| 4 long_description = file.read() | 4 long_description = file.read() |
| 5 | 5 |
| 6 setuptools.setup( | 6 setuptools.setup( |
| 7 name='trafficintelligence', | 7 name='trafficintelligence', |
| 8 version='0.2.5', | 8 version='0.2.6', |
| 9 author='Nicolas Saunier', | 9 author='Nicolas Saunier', |
| 10 author_email='[email protected]', | 10 author_email='[email protected]', |
| 11 url='https://bitbucket.org/Nicolas/trafficintelligence', | 11 url='https://bitbucket.org/Nicolas/trafficintelligence', |
| 12 packages=setuptools.find_packages(), | 12 packages=setuptools.find_packages(), |
| 13 description='Python modules of the Traffic Intelligence project', | 13 description='Python modules of the Traffic Intelligence project', |
| 14 long_description=long_description, | 14 long_description=long_description, |
| 15 license = 'MIT License', | 15 license = 'MIT License', |
| 16 classifiers=( | 16 classifiers=[ |
| 17 "Programming Language :: Python :: 3", | 17 "Programming Language :: Python :: 3", |
| 18 "License :: OSI Approved :: MIT License", | 18 "License :: OSI Approved :: MIT License", |
| 19 "Operating System :: OS Independent", | 19 "Operating System :: OS Independent", |
| 20 ), | 20 ], |
| 21 ) | 21 ) |
