-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (39 loc) · 1.45 KB
/
setup.py
File metadata and controls
42 lines (39 loc) · 1.45 KB
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
41
42
"""
setup file for photocrypt package.
"""
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="photocrypt",
version="0.0.8",
author="Hosung Lee, Sean Kullmann",
author_email="[email protected], [email protected]",
description="A package that can encrypt and decrypt images",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Kullmann/Photocrypt",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only',
],
python_requires='>=3.6',
keywords='cryptology, cryptograpy, image',
install_requires=['Pillow','pycryptodome','pycryptodomex'],
extras_require={
'gui':['PyQt5', 'PyQt5-sip', 'pypiwin32']
},
project_urls={
'Bug Reports': 'https://github.com/Kullmann/Photocrypt/issues',
'Source': 'https://github.com/Kullmann/Photocrypt',
}
)