Hello Freedom
This commit is contained in:
21
legacy-code/deb2/setup.py
Normal file
21
legacy-code/deb2/setup.py
Normal file
@@ -0,0 +1,21 @@
|
||||
#!/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' : ['*']
|
||||
# }
|
||||
)
|
||||
Reference in New Issue
Block a user