IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
소스 검색

setup.py adjustments

tags/0.92
부모
커밋
9f0c28c871
3개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -0
      .gitignore
  2. +1
    -0
      README
  3. +4
    -1
      setup.py

+ 2
- 0
.gitignore 파일 보기

@@ -1,2 +1,4 @@
__pycache__
/build/
/dist/
/MANIFEST

+ 1
- 0
README 파일 보기

@@ -0,0 +1 @@
Focker is a FreeBSD image orchestration tool in the vein of Docker.

+ 4
- 1
setup.py 파일 보기

@@ -3,6 +3,9 @@ from distutils.core import setup
setup(
name='focker',
version='0.9',
author='Stanislaw Adaszewski',
author_email='s.adaszewski@gmail.com',
url='https://github.com/sadaszewski/focker',
packages=['focker'],
license='The GNU General Public License v3.0',
description='Focker is a FreeBSD image orchestration tool in the vein of Docker.',
@@ -11,6 +14,6 @@ setup(
install_requires=[
"tabulate",
"jailconf",
"yaml"
"pyyaml"
]
)

불러오는 중...
취소
저장