mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-11 23:23:29 +08:00
MAINT: remove binstar stuff and cleanup setup.py
This commit is contained in:
@@ -63,5 +63,3 @@ benchmarks.db
|
||||
# Intellij IDE temp project files
|
||||
.project
|
||||
zipline.iml
|
||||
|
||||
.binstar.yml
|
||||
@@ -1,22 +0,0 @@
|
||||
package: cyordereddict
|
||||
user: quantopian
|
||||
|
||||
platform:
|
||||
- linux-64
|
||||
engine:
|
||||
- python=2.7
|
||||
- python=3.4
|
||||
|
||||
install:
|
||||
- conda config --add channels quantopian
|
||||
- conda config --set always_yes true
|
||||
|
||||
before_script:
|
||||
- python -V
|
||||
|
||||
script:
|
||||
- conda build conda/cyordereddict
|
||||
|
||||
iotimeout: 600
|
||||
|
||||
build_targets: conda
|
||||
@@ -1,22 +0,0 @@
|
||||
package: logbook
|
||||
user: quantopian
|
||||
|
||||
platform:
|
||||
- linux-64
|
||||
engine:
|
||||
- python=2.7
|
||||
- python=3.4
|
||||
|
||||
install:
|
||||
- conda config --add channels quantopian
|
||||
- conda config --set always_yes true
|
||||
|
||||
before_script:
|
||||
- python -V
|
||||
|
||||
script:
|
||||
- conda build conda/logbook/
|
||||
|
||||
iotimeout: 600
|
||||
|
||||
build_targets: conda
|
||||
@@ -1,22 +0,0 @@
|
||||
package: ta-lib
|
||||
user: quantopian
|
||||
|
||||
platform:
|
||||
- linux-64
|
||||
engine:
|
||||
- python=2.7
|
||||
- python=3.4
|
||||
|
||||
install:
|
||||
- conda config --add channels quantopian
|
||||
- conda config --set always_yes true
|
||||
|
||||
before_script:
|
||||
- python -V
|
||||
|
||||
script:
|
||||
- conda build conda/ta-lib/
|
||||
|
||||
iotimeout: 600
|
||||
|
||||
build_targets: conda
|
||||
@@ -1,27 +0,0 @@
|
||||
package: zipline
|
||||
user: quantopian
|
||||
|
||||
platform:
|
||||
- linux-64
|
||||
engine:
|
||||
- python=2.7
|
||||
- python=3.4
|
||||
|
||||
install:
|
||||
- conda config --add channels quantopian
|
||||
- conda config --set always_yes true
|
||||
- source deactivate
|
||||
# conda-build built from https://github.com/conda/conda-build/pull/717
|
||||
# (conda-build can only be installed in root env.)
|
||||
- conda install conda-build=1.10alpha.0
|
||||
- source activate /home/anaconda/env
|
||||
|
||||
before_script:
|
||||
- python -V
|
||||
|
||||
script:
|
||||
- conda build conda/zipline/
|
||||
|
||||
iotimeout: 600
|
||||
|
||||
build_targets: conda
|
||||
@@ -239,8 +239,13 @@ setup_requires = module_requirements(
|
||||
conda_format=conda_build,
|
||||
)
|
||||
|
||||
conditional_arguments = {
|
||||
'setup_requires' if not conda_build else 'build_requires': setup_requires,
|
||||
}
|
||||
|
||||
setup(
|
||||
name='zipline',
|
||||
url="http://zipline.io",
|
||||
version=versioneer.get_version(),
|
||||
cmdclass=LazyBuildExtCommandClass(versioneer.get_cmdclass()),
|
||||
description='A backtester for financial algorithms.',
|
||||
@@ -266,7 +271,5 @@ setup(
|
||||
],
|
||||
install_requires=install_requires(conda_format=conda_build),
|
||||
extras_require=extras_requires(conda_format=conda_build),
|
||||
setup_requires=setup_requires if not conda_build else [],
|
||||
build_requires=setup_requires,
|
||||
url="http://zipline.io",
|
||||
**conditional_arguments
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user