22 lines
740 B
Python
22 lines
740 B
Python
|
#!/usr/bin/env python3
|
||
|
from setuptools import setup, find_packages
|
||
|
|
||
|
|
||
|
setup(
|
||
|
name='ntru-nino',
|
||
|
version='0.1',
|
||
|
description='Gtk interface for NTRU Encryption',
|
||
|
author='Nino Agus',
|
||
|
author_email='ninoagus@protonmail.com',
|
||
|
license='GPL3',
|
||
|
install_requires=['paho-mqtt', 'gobject', 'PyGobject'],
|
||
|
packages=['ntru_nino'],
|
||
|
entry_points=dict(console_scripts=['ntru-nino2=ntru_nino.main:mainWindowHandler']),
|
||
|
data_files=[('share/applications/', ['ntru-GTK.desktop']), ('lib/ntru-nino/', ['./ntru_nino/Publisher.glade'])],
|
||
|
include_package_data=True
|
||
|
# package_data= {
|
||
|
# 'ntru-nino' : ['*'],
|
||
|
# 'src' : ['*']
|
||
|
# }
|
||
|
)
|