File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
language : python
2
2
python :
3
- - " 3.4 "
3
+ - " 2.7 "
4
4
install :
5
5
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
6
6
- bash Miniconda3-latest-Linux-x86_64.sh -b -p $HOME/miniconda
Original file line number Diff line number Diff line change 2
2
from __future__ import print_function
3
3
4
4
import os
5
- from setuptools import setup
6
-
5
+ from distutils .core import setup
7
6
8
7
DESCRIPTION = 'Binary Array Linked Data'
9
8
NAME = 'bald'
@@ -56,7 +55,9 @@ def extract_description():
56
55
license = 'BSD' ,
57
56
url = 'https://github.com/binary-array-ld/bald' ,
58
57
package_dir = {'' : 'lib' },
59
- packages = [NAME ],
58
+ packages = [NAME , '{}.tests' .format (NAME ),
59
+ '{}.tests.unit' .format (NAME ),
60
+ '{}.tests.integration' .format (NAME )],
60
61
# package_data=extract_package_data(),
61
62
classifiers = [
62
63
# For full license details, see
You can’t perform that action at this time.
0 commit comments