We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed0018b commit 8c85c70Copy full SHA for 8c85c70
setup.py
@@ -0,0 +1,27 @@
1
+import setuptools
2
+
3
+with open("README.md", "r") as f:
4
+ long_description = f.read()
5
6
+setuptools.setup(
7
+ name="rubikencryptor",
8
+ version="1.0.0",
9
+ author="Daniel Isaac",
10
+ author_email="[email protected]",
11
+ description="Image Cryptography Based on Rubix's Cube Principle",
12
+ long_description=long_description,
13
+ long_description_content_type="text/markdown",
14
+ url="https://github.com/dannyi96/Image-Cryptography",
15
+ packages=['rubikencryptor'],
16
+ include_package_data=True,
17
+ license='MIT',
18
+ classifiers=(
19
+ "Programming Language :: Python :: 3",
20
+ "License :: OSI Approved :: MIT License",
21
+ "Operating System :: OS Independent",
22
+ ),
23
+ install_requires=[
24
+ 'numpy==1.20.2',
25
+ 'Pillow==8.4.0',
26
+ ],
27
+)
0 commit comments