-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
24 lines (22 loc) · 864 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='remmina-password-exposer',
version='0.3',
description="Print remmina password in clear",
long_description=readme(),
classifiers=['Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'],
url='https://github.com/peppelinux/Remmina-password-exposer',
author='Giuseppe De Marco',
author_email='[email protected]',
license='BSD',
scripts=['remmina_password_exposer/remmina_password_exposer.py'],
packages=['remmina_password_exposer'],
install_requires=[
'pycrypto'
],
)