We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3069a4a commit 505d499Copy full SHA for 505d499
4 files changed
.travis.yml
@@ -1,8 +1,22 @@
1
language: python
2
+
3
python:
4
- "2.6"
5
- "2.7"
6
- "3.2"
7
- "3.3"
8
+ - "3.4"
9
+ - "3.5"
10
+ - "nightly"
11
12
+install:
13
+ - pip install coveralls
14
+ - pip install codecov
15
+ - python setup.py install
16
17
script:
- - python test.py
18
+ - coverage run setup.py test
19
20
+after_success:
21
+ - coveralls
22
+ - codecov
setup.py
@@ -1,5 +1,7 @@
-from setuptools import setup, Extension
-#from distutils.core import setup, Extension
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+from setuptools import setup
setup(name='python-magic',
description='File type identification using libmagic',
test/__init__.py
test/test.py
100644
100755
0 commit comments