From 4594644aa7ac8b783073c54399349f06f4c22dc2 Mon Sep 17 00:00:00 2001 From: Morgan Williams Date: Mon, 18 Jun 2018 09:43:42 +0800 Subject: [PATCH] Update Setup, Add Environment File --- environment.yml | 32 ++++++++++++++++++++++++++++++++ setup.py | 6 ++++-- 2 files changed, 36 insertions(+), 2 deletions(-) create mode 100644 environment.yml diff --git a/environment.yml b/environment.yml new file mode 100644 index 00000000..d32e7b5e --- /dev/null +++ b/environment.yml @@ -0,0 +1,32 @@ +name: pyrolite-env +channels: + - defaults +dependencies: + - certifi=2018.4.16=py36_0 + - pip=10.0.1=py36_0 + - python=3.6.5=h0c2934d_0 + - setuptools=39.2.0=py36_0 + - vc=14=h0510ff6_3 + - vs2015_runtime=14.0.25123=3 + - wheel=0.31.1=py36_0 + - wincertstore=0.2=py36h7fe50ca_0 + - pip: + - cycler==0.10.0 + - kiwisolver==1.0.1 + - matplotlib==2.2.2 + - mpmath==1.0.0 + - numpy==1.14.5 + - pandas==0.23.1 + - pathlib==1.0.1 + - periodictable==1.5.0 + - pkginfo==1.4.2 + - pyparsing==2.2.0 + - python-dateutil==2.7.3 + - python-ternary==1.0.4 + - pytz==2018.4 + - requests-toolbelt==0.8.0 + - scikit-learn==0.19.1 + - scipy==1.1.0 + - six==1.11.0 + - twine==1.11.0 + - xlrd==1.1.0 diff --git a/setup.py b/setup.py index f0efd11a..c50ce018 100644 --- a/setup.py +++ b/setup.py @@ -31,12 +31,14 @@ extras_require={'dev': ['versioneer', 'nbstripout', - 'nbdime']}, + 'nbdime', + 'twine']}, tests_require=['pytest', 'pytest-runner', 'pytest-cov', - 'coverage'], + 'coverage', + 'coveralls'], test_suite="test", package_data={'pyrolite': ['data/*']},