Skip to content

Commit

Permalink
[fix] setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
IaroslavR committed Oct 20, 2018
1 parent 137d908 commit b205db0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@

setup_kwargs = dict(
name='decimal-monkeypatch',
version='0.1',
version='0.2',
description='Monkey patches Python 2 decimal to cdecimal',
author='Iaroslav Russkykh',
author_email='iarrus@ya.ru',
license='BSD',
url='https://github.com/IaroslavR/decimal-monkeypatch',
packages=['decimal-monkeypatch'],
package_dir={'decimal-monkeypatch': 'src'},
package_data={'decimal-monkeypatch': ['__startup__/sitecustomize.py']},
packages=['decimal_monkeypatch'],
package_dir={'decimal_monkeypatch': 'src'},
package_data={'decimal_monkeypatch': ['__startup__/sitecustomize.py']},
data_files=[(get_python_lib(prefix=''), ['autowrapt-init.pth'])],
entry_points={
'console_scripts': ['decimal-monkeypatch = decimal-monkeypatch.main:main'],
'decimal-monkeypatch.patches': ['decimal = decimal-monkeypatch.patches:autowrapt_decimal']},
install_requires=['wrapt>=1.10.4', 'm3-cdecimal==2.3'],
'console_scripts': ['decimal_monkeypatch = decimal_monkeypatch.main:main'],
'decimal_monkeypatch.patches': ['decimal = decimal_monkeypatch.patches:autowrapt_decimal']},
install_requires=['wrapt>=1.10.4', 'm3-cdecimal==2.3', ],
)

setup(**setup_kwargs)

0 comments on commit b205db0

Please sign in to comment.