Skip to content

Commit

Permalink
Update setup config and README for 0.0.1.dev
Browse files Browse the repository at this point in the history
  • Loading branch information
fridiculous committed Sep 16, 2016
1 parent 17b96d2 commit eb10c47
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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



Expand Down
5 changes: 4 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@ ignore = E123,E128,E402,W503,E731
max-line-length = 119

[metadata]
description-file = README.rst
description-file = README.rst

[bdist_wheel]
universal=1
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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
Expand All @@ -44,4 +45,5 @@
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Version Control',
],
keywords='scikit-learn, machine learning, ml, estimators, version control'
)

0 comments on commit eb10c47

Please sign in to comment.