twik/setup.py

20 lines
492 B
Python
Raw Normal View History

2014-09-22 22:16:38 +02:00
from setuptools import setup, find_packages
import sys, os
2014-10-11 20:43:52 +02:00
version = '0.5'
2014-09-22 22:16:38 +02:00
setup(name='twik',
2019-05-29 13:44:26 +02:00
version=version,
description="Twik is an application that makes it easier to generate secure and different passwords for each website.",
keywords='twik password hash',
author='Alexandre Possebom',
author_email='alexandrepossebom@gmail.com',
url='https://github.com/coxande/Twik',
license='GPLv3',
packages=['twik'],
entry_points = {
'console_scripts': ['twik = twik.run:main'],
},
)