Mercurial > hg > bnpparibas
changeset 1:ee040846c98f
Add minimal setup.py
author | Daniele Nicolodi <daniele.nicolodi@obspm.fr> |
---|---|
date | Tue, 24 Feb 2015 19:30:26 +0100 |
parents | 02ec4a9ab0f0 |
children | ad577744dd8e |
files | setup.py |
diffstat | 1 files changed, 21 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Tue Feb 24 19:30:26 2015 +0100 @@ -0,0 +1,21 @@ +from setuptools import setup, find_packages + +VERSION = '1' + +setup(name='bnpparibas', + version=VERSION, + keywords='', + author='Daniele Nicolodi', + author_email='daniele@grinta.net', + url='http://dev.grinta.net/hg/bnpparibas/', + license='AGPLv3+', + packages=find_packages(), + package_dir={'': 'src'}, + include_package_data=False, + zip_safe=False, + install_requires=[ 'Pillow', 'beautifulsoup4', 'requests', ], + entry_points={ + 'console_scripts': [ + 'bnpparibas = bnpparibas:main', ], + } +)