mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
22 lines
654 B
Python
22 lines
654 B
Python
#!/usr/bin/env python
|
|
import os
|
|
from setuptools import setup
|
|
|
|
ROOT_DIR = os.path.dirname(__file__)
|
|
SOURCE_DIR = os.path.join(ROOT_DIR)
|
|
|
|
test_requirements = []
|
|
setup(
|
|
name="docker-brew",
|
|
version='0.0.1',
|
|
description="-",
|
|
packages=['dockerbrew'],
|
|
install_requires=['dulwich', 'docker'] + test_requirements,
|
|
zip_safe=False,
|
|
classifiers=['Development Status :: 3 - Alpha',
|
|
'Environment :: Other Environment',
|
|
'Intended Audience :: Developers',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Topic :: Utilities'],
|
|
)
|