Skip to content

Commit 227373c

Browse files
authored
setup
1 parent 8911b99 commit 227373c

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

setup.py

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import os
2+
from setuptools import setup, find_packages
3+
4+
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
5+
README = readme.read()
6+
7+
setup(
8+
name='kamabayEncoder',
9+
version='0.1.0',
10+
packages = find_packages(),
11+
include_package_data=True,
12+
description='decode encode data.',
13+
long_description = README,
14+
author='Exso Kamabay',
15+
url='https://github.com/ExsoKamabay/EncoderDecoder',
16+
license='Apache License 2.0',
17+
#install_requires=['url64', 'string-color', 'bs4','requests','art'],
18+
keywords = ['kamabay', 'encode', 'decode', 'encrypt', 'decrypt'],
19+
classifiers=[
20+
'License :: OSI Approved :: Apache Software License',
21+
'Operating System :: OS Independent',
22+
'Programming Language :: Python :: 3',
23+
'Topic :: Utilities',
24+
],
25+
)

0 commit comments

Comments
 (0)