Mercurial > hg > brinksmoney
comparison setup.py @ 0:72fab2710469 default tip
Import
author | Daniele Nicolodi <daniele@grinta.net> |
---|---|
date | Fri, 05 Aug 2016 23:16:31 -0600 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:72fab2710469 |
---|---|
1 from setuptools import setup, find_packages | |
2 | |
3 VERSION = '1' | |
4 | |
5 setup(name='brinksmoney', | |
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 include_package_data=False, | |
14 zip_safe=False, | |
15 install_requires=[ | |
16 'click', | |
17 'requests', ], | |
18 entry_points={ | |
19 'console_scripts': [ | |
20 'brinksmoney = brinksmoney:main', ], | |
21 } | |
22 ) |