-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
27 lines (25 loc) · 911 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
25
26
27
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
setup(name='pyAesCrypt',
version='6.1.1',
packages = find_packages(),
include_package_data=True,
description='Encrypt and decrypt files and streams in AES Crypt format (version 2)',
long_description = README,
author='Marco Bellaccini',
url='https://github.com/marcobellaccini/pyAesCrypt',
license='Apache License 2.0',
scripts=['bin/pyAesCrypt'],
install_requires=['cryptography'],
keywords = "AES Crypt encrypt decrypt",
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Security',
'Topic :: Security :: Cryptography',
'Topic :: Utilities',
],
)