-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (41 loc) · 1.66 KB
/
setup.py
File metadata and controls
46 lines (41 loc) · 1.66 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
40
41
42
43
44
45
46
from distutils.core import setup
from setuptools.command.install import install as _install
class install(_install):
def run(self):
_install.run(self)
self.execute(
_post_install, (self.install_lib,),
msg="")
def _post_install(dir):
print_cafe_mug()
def print_cafe_mug():
print('\n'.join(["\t\t ...................",
"\t\t |.................|",
"\t\t | |",
"\t\t | O O |",
"\t\t | |",
"\t\t | | |",
"\t\t | | |",
"\t\t | | |",
"\t\t | |",
"\t\t | \_______/ |",
"\t\t | |",
"\t\t |_________________|",
]))
print("********************************************************")
print("Congratulations, maRshEST is now Installed")
print("********************************************************")
setup(
name = 'marshest',
packages = ['marshest'],
version = '0.1.1',
description = 'A library for Marshalling JSON requests',
author = 'Jaydeep Chakrabarty',
author_email = 'jaydeepc@thoughtworks.com',
install_requires=['requests'],
url = 'https://github.com/jaydeepc/marshmallow',
download_url = 'https://github.com/jaydeepc/marshmallow/tarball/0.1',
keywords = ['testing', 'marshalling', 'json', 'restapi', 'api', 'automation', 'functionaltesting'],
classifiers = [],
cmdclass={'install': install}
)