Skip to content

Commit 9da609e

Browse files
committed
modified setup
2 parents 41a6bc6 + 7f00271 commit 9da609e

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@ __pycache__
66
._.DS_Store
77
.DS_Store
88
._*
9+
10+
/dist/
11+
/build/

.travis.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
language: python
22
python:
3-
- "3.6"
4-
5-
# command to install dependencies
3+
- '3.6'
64
install:
7-
- pip install Cython nose
8-
- pip install git+http://github.com/yapic/lzw-decompressor.git@master
9-
- pip install git+http://github.com/yapic/bigtiff.git@master
10-
- pip install .
11-
# command to run tests
5+
- pip install nose
6+
- pip install .
127
script:
13-
- nosetests
8+
- nosetests
9+
deploy:
10+
provider: pypi
11+
user: cmohl
12+
password:
13+
secure: TaZCKpu9HFr7/ZLS3OnyzXlCN3DxvKjm35KWoCl/CzwP3xoqJUk7se4AcZ7xWQjMOSab6gCPHgR8H66t6B+QNzp6cqyUQVVXM9tnB7mUWXSvzCGij7+SneavvAKnKs4EBHivUk9IFIXQ9UujcbptYtaDzs6vm2Qcpbh/LVRwaYStqRmcR9NfLBqSIyLlBTj5Yk3Q0nCFUfyEeP1cketQ4kw+ScUzrOnM1XqxWjwBsuYifZSiBzYcXwOO6LOoI5onFixV3bkb4xeP1BDEy+PiJ0xB/SQ0COnNDRtCrZe9ZuvuvcdKPHPJp6xksOI0K7ME9dLmJoRCO2rpWAKqtbJjDAoZNif5eMNdiqX2CbTBP2OvqfBcpWq6onyhZoUXV0tI0bNJ4tPsl76pQ7tYYQ39udWq2papQmIJ2s9T297k/k4RuphdYtt0aPbt1XQRZz7CwYR3pUFxgK3EtFgp19hR/rX7n1fRNl4SVdCtmgxsxTmFDyCC1B5MX8/NOVHQyBSISzXrFKvBGxrmaSTmG8Rj1ZyKycS2MOiPaM+1WSXOyEMMM+AqwgtKFzJA1FNCrV6voD0RtsYjz/tSKaKlguLf3PS0qB0jgKXEhsW/ujxcBTl8nnTLInRZ9F/uz24VoANvDRBuAHBMTPaoUYAUoovAdHxF3qePHDPLaz+P1rRpQgs=
14+
on:
15+
tags: true

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
h5py>=2.6.0
22
numpy>=1.12.1
33
docopt>=0.6.2
4-
bigtiff @ git+http://github.com/yapic/bigtiff.git@master
4+
bigtiff>=0.1.1

setup.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,5 @@ def readme():
2727
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
2828
zip_safe=False,
2929
install_requires=reqs,
30-
dependency_links=[
31-
'git+http://animate-x3.dzne.ds/idaf/tiff.git@master#egg=bigtiff-0.1.0',
32-
],
3330
test_suite='nose.collector',
3431
tests_require=['nose', 'coverage', 'nose-timer', 'nose-deadline'])

0 commit comments

Comments
 (0)