From eb10c473ed40b444a936037bb05b20711b3b0bf7 Mon Sep 17 00:00:00 2001 From: Simon Frid Date: Thu, 15 Sep 2016 17:54:58 -0700 Subject: [PATCH] Update setup config and README for 0.0.1.dev --- README.rst | 4 ++-- setup.cfg | 5 ++++- setup.py | 6 ++++-- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index f0122e7..ed80a19 100644 --- a/README.rst +++ b/README.rst @@ -53,9 +53,9 @@ Installation ------------ -Django-estimators will soon be available on PyPI. In the meantime, to install it, just run: :: +Django-estimators is on PyPI, so just run: :: - pip install git+https://github.com/fridiculous/django-estimators.git + pip install django-estimators diff --git a/setup.cfg b/setup.cfg index 3db0ffd..2a0ef73 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,4 +4,7 @@ ignore = E123,E128,E402,W503,E731 max-line-length = 119 [metadata] -description-file = README.rst \ No newline at end of file +description-file = README.rst + +[bdist_wheel] +universal=1 \ No newline at end of file diff --git a/setup.py b/setup.py index cbf96cd..9862af8 100644 --- a/setup.py +++ b/setup.py @@ -9,13 +9,13 @@ install_reqs = parse_requirements( os.path.join(os.path.dirname(__file__), 'requirements.txt'), session=False) reqs = [str(ir.req) for ir in install_reqs] - +print(reqs) # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-estimators', - version='0.1', + version='0.1.0.dev', packages=find_packages(), include_package_data=True, install_requires=reqs, @@ -29,6 +29,7 @@ 'Environment :: Web Environment', 'Framework :: Django', 'Framework :: Django :: 1.9', + 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: MIT License', # example license @@ -44,4 +45,5 @@ 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Version Control', ], + keywords='scikit-learn, machine learning, ml, estimators, version control' )