Skip to content

Commit 8c85c70

Browse files
committed
adding setup.py to python package
1 parent ed0018b commit 8c85c70

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

setup.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)