Skip to content

Commit

Permalink
Update descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
dexter2206 committed Jan 14, 2019
1 parent c379c7b commit e83ead0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
"""Setup file for bruteforce package."""
"""Ising: a Python package for exactly solving abritrary Ising model instances using exhaustive search."""

from setuptools import find_packages # pylint: disable=unused-import
from numpy.distutils.core import setup, Extension
from numpy.distutils.log import set_verbosity
from setup_helpers import BuildExtCommand

set_verbosity(1)

with open('README.rst') as readme:
LONG_DESCRIPTION = readme.read()

CPU_SEARCH_EXT = Extension('isingcpu',
extra_compile_args=['-fPIC',
'-fopenmp',
Expand Down Expand Up @@ -35,6 +39,8 @@
setup(
use_scm_version=True,
name='ising',
description=__doc__,
long_description=LONG_DESCRIPTION,
cmdclass={'build_ext': BuildExtCommand},
setup_requires=['setuptools_scm'],
install_requires=['numpy>=0.16.0', 'psutil', 'progressbar2', 'future'],
Expand Down

0 comments on commit e83ead0

Please sign in to comment.