dokkan-battle-bot/setup.py
Pawel Orzech 03546e2a5e Fix
2019-11-09 21:01:55 +00:00

22 lines
607 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Module : setup.py
# Author : bssthu
# Project : pysqlsimplecipher
# Creation date : 2016-06-05
# Description :
#
from setuptools import setup
setup(name='pysqlsimplecipher',
version='0.2',
url='https://github.com/bssthu/pysqlsimplecipher',
license='GNU Lesser General Public License Version 3',
author='bssthu',
description='A tool for sqlite database encryption or decryption like sqlcipher without install sqlcipher',
install_requires=['pycrypto'],
packages=['pysqlsimplecipher']
)