13 lines
300 B
Python
13 lines
300 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='rebindiff',
|
|
version='0.1',
|
|
packages=find_packages(),
|
|
license='GPL-3.0',
|
|
author='Davide Depau',
|
|
author_email='davide@depau.eu',
|
|
entry_points = {
|
|
'console_scripts': ['rebindiff=rebindiff.main:main'],
|
|
}
|
|
)
|