-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
34 lines (23 loc) · 1.06 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(name='stringencrypt',
version='1.0.0',
description='StringEncrypt page allows you to encrypt strings and files using randomly generated algorithm, generating a unique decryption code (so called polymorphic code) each time in the selected programming language.',
long_description=long_description,
long_description_content_type="text/markdown",
keywords = "encryption string file string-encryption file-encryption security cryptography",
url='https://www.stringencrypt.com',
author='Bartosz Wójcik',
author_email='[email protected]',
license='Apache-2.0',
packages=['stringencrypt'],
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Python Modules",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
],
)