From 090a2703703877bd150aae637031c5d7dcba2df4 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Sun, 10 Sep 2017 12:32:49 +0200 Subject: setup.py: Adding install_requires. digikey: Updating tests. Making sure the directory exist before writing facts. Stop recursing into new searches when a search returns multiple hits. Let the frontends do that. --- setup.py | 37 +++++++++++++++++++++++++------------ 1 file changed, 25 insertions(+), 12 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 1580612..0470b81 100644 --- a/setup.py +++ b/setup.py @@ -1,16 +1,29 @@ from distutils.core import setup -from glob import glob -from os.path import basename -from os.path import dirname -from os.path import join -from os.path import splitext + from setuptools import find_packages setup(name='ee', - version='1.0', - packages=find_packages('src'), - package_dir={'': 'src'}, - entry_points = { - 'console_scripts': ['ee=ee.__main__:main'], - }, - ) + version='1.0', + packages=find_packages('src'), + package_dir={'': 'src'}, + entry_points={ + 'console_scripts': ['ee=ee.__main__:main'], + }, + install_requires=[ + 'ansicolors', + 'cachecontrol', + 'lockfile', + 'lxml', + 'matplotlib', + 'mpmath', + 'mypy', + 'numpy', + 'pandas', + 'parsec', + 'Pillow', + 'pytest', + 'pyyaml', + 'requests', + 'sympy', + ], + ) -- cgit v1.2.3