-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
27 lines (22 loc) · 1.01 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
from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()
with open('HISTORY.md') as history_file:
HISTORY = history_file.read()
setup_args = dict(
name='enyo',
version='0.1.1',
description='Enyo is a lightweight multistage partition-based encryption algorithm. Enyo cipher demonstrates good resistance to a brute-force attack. It is well suited for small-scale applications where the computational power is a bottleneck.',
long_description_content_type="text/markdown",
long_description=README + '\n\n' + HISTORY,
license='MIT',
packages=find_packages(),
author='Apratim Shukla, Mayank Tolani, Dipan Polley, Abhishek TK',
author_email='[email protected]',
keywords=['Enyo', 'EnyoCipher', 'EnyoEncryption'],
url='https://github.com/apratimshukla6/enyo',
download_url='https://pypi.org/project/enyo/'
)
install_requires = []
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)