-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 976 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 976 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from distutils.core import setup
setup(
name='focker',
version='2.00',
author='Stanislaw Adaszewski',
author_email='s.adaszewski@gmail.com',
url='https://github.com/sadaszewski/focker',
packages=['focker', 'focker.cmdmodule', 'focker.cmdmodule.bootstrap',
'focker.cmdmodule.compose', 'focker.core', 'focker.core.config',
'focker.core.image', 'focker.core.jailspec', 'focker.core.osjail',
'focker.jailconf', 'focker.misc'],
license='The GNU General Public License v3.0',
description='Focker is a FreeBSD image orchestration tool in the vein of Docker.',
long_description='Focker is a FreeBSD image orchestration tool in the vein of Docker.',
scripts=['scripts/focker', 'scripts/focker-bsdinstall', 'scripts/focker-mirrorselect',
'scripts/migrate_jailconf.py', 'scripts/focker_service'],
install_requires=[
"tabulate",
"pyparsing",
"ruamel-yaml"
]
)