-
Notifications
You must be signed in to change notification settings - Fork 21
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 #154 from kpdyer/dev
merge to master for 0.2.16
- Loading branch information
Showing
8 changed files
with
40 additions
and
12 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
language: | ||
- python | ||
- cpp | ||
compiler: | ||
- gcc | ||
- clang | ||
before_install: | ||
- sudo apt-get update -qq | ||
- sudo apt-get install -y libgmp-dev | ||
python: | ||
- "2.6" | ||
- "2.7" | ||
install: | ||
- "pip install -r requirements.txt" | ||
script: | ||
- "python setup.py test" |
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
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 +1 @@ | ||
0.2.16-beta | ||
0.2.16 |
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
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
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
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
fte | ||
pyptlib | ||
obfsproxy | ||
twisted | ||
txsocksx | ||
parsley |
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 |
---|---|---|
|
@@ -15,8 +15,8 @@ | |
# You should have received a copy of the GNU General Public License | ||
# along with fteproxy. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
from distutils.core import setup | ||
from distutils.core import Extension | ||
from setuptools import setup | ||
from setuptools import Extension | ||
|
||
import glob | ||
import sys | ||
|
@@ -40,4 +40,5 @@ | |
author_email='[email protected]', | ||
url='https://github.com/kpdyer/fteproxy', | ||
packages=['fteproxy', 'fteproxy.defs', 'fteproxy.tests'], | ||
install_requires=['txsocksx', 'parsley', 'pyptlib', 'obfsproxy', 'twisted', 'fte'] | ||
) |