-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·57 lines (46 loc) · 1.55 KB
/
setup.py
File metadata and controls
executable file
·57 lines (46 loc) · 1.55 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
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools.command.install import install as _install
class install(_install):
def pre_install_script(self):
pass
def post_install_script(self):
pass
def run(self):
self.pre_install_script()
_install.run(self)
self.post_install_script()
if __name__ == '__main__':
setup(
name = 'pybuilder-docker',
version = '0.1.14',
description = 'A pybuilder plugin that stages a python package into a docker container and optionally publishes it to a registry.',
long_description = 'A pybuilder plugin that stages a python package into a docker container and optionally publishes it to a registry.',
long_description_content_type = None,
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: Python'
],
keywords = '',
author = '',
author_email = '',
maintainer = '',
maintainer_email = '',
license = 'Apache 2.0',
url = 'https://github.com/AlienVault-Engineering/pybuilder-docker',
project_urls = {},
scripts = [],
packages = ['pybuilder_docker'],
namespace_packages = [],
py_modules = [],
entry_points = {},
data_files = [],
package_data = {},
install_requires = [],
dependency_links = [],
zip_safe = True,
cmdclass = {'install': install},
python_requires = '',
obsoletes = [],
)