From 7ed688f0f45de330eacd5663a54608c5afb7b4b7 Mon Sep 17 00:00:00 2001 From: David Dotson Date: Sat, 27 May 2017 00:05:42 -0700 Subject: [PATCH] Release 0.1.0 --- MANIFEST.in | 4 ++++ setup.cfg | 2 ++ setup.py | 5 ++--- 3 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 MANIFEST.in create mode 100644 setup.cfg diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..c50ff0be --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,4 @@ +include *.rst +recursive-include src/alchemlyb *.gz *.bz2 *.zip *.rst *.txt +include README.rst +include LICENSE diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 00000000..3c6e79cf --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup.py b/setup.py index 68a7cf69..f27cfef8 100755 --- a/setup.py +++ b/setup.py @@ -10,12 +10,12 @@ from setuptools import setup, find_packages setup(name='alchemlyb', - version='0.1.0-dev', + version='0.1.0', description='the simple alchemistry library', author='David Dotson', author_email='dotsdl@gmail.com', classifiers=[ - 'Development Status :: 2 - Pre-Alpha', + 'Development Status :: 3 - Alpha', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python', @@ -26,6 +26,5 @@ license='BSD', long_description=open('README.rst').read(), tests_require = ['pytest', 'alchemtest'], - dependency_links=['http://github.com/alchemistry/alchemtest/tarball/master#egg=alchemtest-0.1.0-dev'], install_requires=['numpy', 'pandas', 'pymbar', 'scipy', 'scikit-learn'] )