Mercurial > hg > bnpparibas
comparison setup.py @ 1:ee040846c98f
Add minimal setup.py
author | Daniele Nicolodi <daniele.nicolodi@obspm.fr> |
---|---|
date | Tue, 24 Feb 2015 19:30:26 +0100 |
parents | |
children | 1311f6533978 |
comparison
equal
deleted
inserted
replaced
0:02ec4a9ab0f0 | 1:ee040846c98f |
---|---|
1 from setuptools import setup, find_packages | |
2 | |
3 VERSION = '1' | |
4 | |
5 setup(name='bnpparibas', | |
6 version=VERSION, | |
7 keywords='', | |
8 author='Daniele Nicolodi', | |
9 author_email='daniele@grinta.net', | |
10 url='http://dev.grinta.net/hg/bnpparibas/', | |
11 license='AGPLv3+', | |
12 packages=find_packages(), | |
13 package_dir={'': 'src'}, | |
14 include_package_data=False, | |
15 zip_safe=False, | |
16 install_requires=[ 'Pillow', 'beautifulsoup4', 'requests', ], | |
17 entry_points={ | |
18 'console_scripts': [ | |
19 'bnpparibas = bnpparibas:main', ], | |
20 } | |
21 ) |