Skip to content

Commit

Permalink
Prepare for the 0.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
person142 committed Apr 13, 2019
1 parent 4af8b63 commit 0e6595a
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# -- Project information -----------------------------------------------------

project = 'spycial'
copyright = '2018, Josh Wilson'
copyright = '2018-2019, Josh Wilson'
author = 'Josh Wilson'

# The short X.Y version
Expand Down
7 changes: 7 additions & 0 deletions doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,10 @@ simpler internals by avoiding the two-language problem.
:maxdepth: 1

spycial

Changelog
---------

.. toctree::

release/0.2-notes
6 changes: 6 additions & 0 deletions doc/source/release/0.2-notes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Spycial 0.2 Release Notes
=========================

Version 0.2 adds the exponential integrals :math:`Ei` and :math:`E_1`
as well as the inverse error function :math:`\text{erf}^{-1}` and the
inverse complementary error function :math:`\text{erfc}^{-1}`.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ asv
sphinx
sphinx_rtd_theme
twine
setuptools
14 changes: 12 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
from distutils.core import setup
from setuptools import setup
from os import path


def get_long_description():
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
return long_description


setup(
name='spycial',
description='Special functions written in Python and accelerated by Numba',
version='0.1.1',
long_description=get_long_description(),
long_description_content_type='text/markdown',
version='0.2',
author='Josh Wilson',
url='https://github.com/person142/spycial',
packages=['spycial'],
Expand Down

0 comments on commit 0e6595a

Please sign in to comment.