-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 820 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 820 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
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
setup(
name='kamabayEncoder',
version='0.1.0',
packages = find_packages(),
include_package_data=True,
description='decode encode data.',
long_description = README,
author='Exso Kamabay',
url='https://github.com/ExsoKamabay/EncoderDecoder',
license='Apache License 2.0',
#install_requires=['url64', 'string-color', 'bs4','requests','art'],
keywords = ['kamabay', 'encode', 'decode', 'encrypt', 'decrypt'],
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
)