comparison setup.py @ 1038:d24deb61f550

corrected bug in setup.py
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Wed, 04 Jul 2018 00:30:40 -0400
parents 0d7e5e290ea3
children 3945d239634e
comparison
equal deleted inserted replaced
1037:6a6c37eb3a74 1038:d24deb61f550
1 import setuptools 1 import setuptools
2 2
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.2', 8 version='0.2.2',
9 author='Nicolas Saunier', 9 author='Nicolas Saunier',
10 author_email='nicolas.saunier@polymtl.ca', 10 author_email='nicolas.saunier@polymtl.ca',
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 classifiers=( 16 classifiers=(
16 "Programming Language :: Python :: 3", 17 "Programming Language :: Python :: 3",
17 "License :: OSI Approved :: MIT License", 18 "License :: OSI Approved :: MIT License",
18 "Operating System :: OS Independent", 19 "Operating System :: OS Independent",
19 ), 20 ),