Skip to content

Commit f52a4b2

Browse files
authored
fix file structure
1 parent 00fa130 commit f52a4b2

File tree

7 files changed

+30
-309
lines changed

7 files changed

+30
-309
lines changed

PDL/package/PDLparse/__init__.py

Whitespace-only changes.

PDL/package/setup.py

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# https://www.freecodecamp.org/news/build-your-first-python-package/
2+
from setuptools import setup, find_packages
3+
4+
VERSION = '1.2'
5+
DESCRIPTION = 'A package for cryptography in python with unique functions'
6+
LONG_DESCRIPTION = '''
7+
A python package for cryptography and data mixing from strings/files more on github.
8+
9+
https://github.com/itzCozi/HashBrowns-Python
10+
'''
11+
12+
# Setting up
13+
setup(
14+
name="hashbrowns",
15+
version=VERSION,
16+
author="Cooper ransom",
17+
author_email="Cooperransom08@outlook.com",
18+
description=DESCRIPTION,
19+
long_description=LONG_DESCRIPTION,
20+
packages=find_packages(),
21+
install_requires=[],
22+
23+
keywords=['python', 'crypto', 'cryptograpgy', 'rsa', 'hashing-algo'],
24+
classifiers= [
25+
"Development Status :: 1 - Beta",
26+
"Intended Audience :: Developers",
27+
"Programming Language :: Python :: 3",
28+
"Operating System :: Microsoft :: Windows :: Linux",
29+
]
30+
)

PDL/pdl/__init__.py

Lines changed: 0 additions & 3 deletions
This file was deleted.

PDL/pdl/colorum.py

Lines changed: 0 additions & 169 deletions
This file was deleted.

PDL/pdl/hash.py

Lines changed: 0 additions & 107 deletions
This file was deleted.

PDL/setup.py

Lines changed: 0 additions & 30 deletions
This file was deleted.

0 commit comments

Comments
 (0)