Skip to content

Commit

Permalink
Modified packaging to include all packages
Browse files Browse the repository at this point in the history
  • Loading branch information
arvindchandra committed Sep 18, 2016
1 parent 577295d commit bed856f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
File renamed without changes.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
import os
import sys
import platform
from setuptools import setup
from setuptools import setup, find_packages
from distutils.version import StrictVersion


if StrictVersion(platform.python_version()) < StrictVersion('3.4.3'):
print('pysystemtrade requires Python 3.4.3 or later. Exiting.', file=sys.stderr)
sys.exit(1)
Expand All @@ -23,7 +24,7 @@ def read(fname):
license="GNU GPL v3",
keywords="systematic trading interactive brokers",
url="http://qoppac.blogspot.co.uk/p/pysystemtrade.html",
packages=['examples', 'syscore', 'sysdata', 'systems', 'syssims'],
packages=find_packages(),
long_description=read('README.md'),
install_requires=["pandas >= 0.17.0", "numpy >= 1.10.1",
"matplotlib > 1.4.3", "PyYAML>=3.11", "scipy>=0.17"],
Expand Down

0 comments on commit bed856f

Please sign in to comment.