-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 744 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 744 Bytes
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, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='cryp-to-go',
version='0.2.1',
packages=find_packages(),
install_requires=['pynacl>=1.3.0', 'cryptography>=2.8', 'peewee'],
url='https://github.com/matthiashuschle/cryp-to-go',
license='MIT',
python_requires=">=3.6",
author='Matthias Huschle',
author_email='matthiashuschle@gmail.com',
description='easy to use high-level crypto library for encrypted data storage/exchange',
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={
'console_scripts': [
'cryp-to-go = cryp_to_go.cli:main'
]
}
)