-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from SohuTech/clear-version
明确版本号
- Loading branch information
Showing
2 changed files
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
from fabric.state import env | ||
|
||
env.PYPI_INDEX = 'http://pypi.douban.com/simple/' | ||
VERSION = '0.0.3' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
# coding: utf-8 | ||
#!/usr/bin/env python | ||
from __future__ import unicode_literals | ||
|
||
from setuptools import setup, find_packages | ||
|
||
from essay import VERSION | ||
|
||
setup( | ||
name='essay', | ||
version='${version}', | ||
description=u'持续部署工具', | ||
version=VERSION, | ||
description='持续部署工具', | ||
long_description='', | ||
author='SohuTech', | ||
author_email='[email protected]', | ||
|