-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (33 loc) · 1.3 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
import os
from setuptools import setup
from setuptools import find_packages
setup(
name='Cape',
version='2.0.0',
author='Giovanni Blu Mitolo <[email protected]>, Colin T.A. Gray <[email protected]>',
author_email='[email protected]',
url='https://github.com/colinta/Cape.py',
install_requires=[],
entry_points={
'console_scripts': [
'cape = cape.__main__:run'
]
},
description='An implementation of Cape in Python.',
long_description='An implementation of Cape in Python.\n\nThe included commandline utility `cape` can be used as a quick way to encrypt/decrypt/hash text.',
packages=find_packages(exclude=['cape.tests']),
keywords='crypt',
platforms='any',
license='BSD',
classifiers=[
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Security :: Cryptography',
],
)