-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 777 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 777 Bytes
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 setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="rubikencryptor",
version="1.0.10",
author="Daniel Isaac",
author_email="danielbcbs2@gmail.com",
description="Image Cryptography Based on Rubix's Cube Principle",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/dannyi96/Image-Cryptography",
packages=['rubikencryptor'],
include_package_data=True,
license='MIT',
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
install_requires=[
'numpy>=1.20.2',
'Pillow>=8.4.0',
],
)