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'] )