Mercurial > hg > nsaunier > traffic-intelligence
comparison setup.py @ 1036:0d7e5e290ea3
upload to pypi
| author | Nicolas Saunier <nicolas.saunier@polymtl.ca> |
|---|---|
| date | Tue, 03 Jul 2018 16:47:37 -0400 |
| parents | cc5cb04b04b0 |
| children | d24deb61f550 |
comparison
equal
deleted
inserted
replaced
| 1035:933588568bec | 1036:0d7e5e290ea3 |
|---|---|
| 1 from setuptools import setup | 1 import setuptools |
| 2 | 2 |
| 3 setup( | 3 with open('README') as file: |
| 4 long_description = file.read() | |
| 5 | |
| 6 setuptools.setup( | |
| 4 name='trafficintelligence', | 7 name='trafficintelligence', |
| 5 version=0.2, | 8 version='0.2.2', |
| 6 description='Python modules of the Traffic Intelligence project', | |
| 7 author='Nicolas Saunier', | 9 author='Nicolas Saunier', |
| 8 author_email='[email protected]', | 10 author_email='[email protected]', |
| 9 url='https://bitbucket.org/Nicolas/trafficintelligence', | 11 url='https://bitbucket.org/Nicolas/trafficintelligence', |
| 10 packages=['trafficintelligence'] | 12 packages=setuptools.find_packages(), |
| 11 #py_modules = ['moving', 'utils'] | 13 description='Python modules of the Traffic Intelligence project', |
| 12 #scripts=['helloworld'] | 14 long_description=long_description, |
| 15 classifiers=( | |
| 16 "Programming Language :: Python :: 3", | |
| 17 "License :: OSI Approved :: MIT License", | |
| 18 "Operating System :: OS Independent", | |
| 19 ), | |
| 13 ) | 20 ) |
