-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 2.69 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (36 loc) · 2.69 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# -*- coding: utf-8 -*-
__author__ = 'Red_C0der'
# /=============================================================================\
# | ██████╗ ███████╗██████╗ ██████╗ ██████╗ ██████╗ ███████╗██████╗ |
# | ██╔══██╗██╔════╝██╔══██╗ ██╔════╝██╔═████╗██╔══██╗██╔════╝██╔══██╗ |
# | ██████╔╝█████╗ ██║ ██║ ██║ ██║██╔██║██║ ██║█████╗ ██████╔╝ |
# | ██╔══██╗██╔══╝ ██║ ██║ ██║ ████╔╝██║██║ ██║██╔══╝ ██╔══██╗ |
# | ██║ ██║███████╗██████╔╝███████╗╚██████╗╚██████╔╝██████╔╝███████╗██║ ██║ |
# | |
# | Name: Name |
# | Version: 0.0.1 |
# | Development-State: Alpha |
# | Project-ID: 0000 |
# | GitHub-Page: https://github.com/Red-C0der/ |
# | License: /LICENSE.txt |
# | |
# | |
# | Personal-Info: |
# | Twitter: https://twitter.com/red_c0der |
# | FaceBook: - |
# | E-Mail: redc0der.mail@gmail.com |
# \=============================================================================/
from setuptools import setup
setup(name='reds_py_lib',
version='0.1',
description='A Library for used in other Projects.',
url='http://github.com/storborg/funniest',
author='Red_C0der',
author_email='redc0der.mail@gmail.com',
license='MIT',
packages=['reds_py_lib'],
install_requires=[
'termcolor',
'colored',
],
zip_safe=False)