Skip to content

Commit

Permalink
Add install files
Browse files Browse the repository at this point in the history
ReeadTheDocs requires install files to handle dependencies and run
autodoc.

- Added install files
- Bumped version number to 0.1 in doc source files
  • Loading branch information
marceloalcocer committed Jul 10, 2016
1 parent 5fc8d64 commit 9f7a414
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 9 deletions.
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@
# built documents.
#
# The short X.Y version.
version = '0.0'
version = '0.1'
# The full version, including alpha/beta/rc tags.
release = '0'
release = '1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
7 changes: 0 additions & 7 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,6 @@ Requirements
- From source
- From PyPi
Installation
=============

Download the source archive from http://www.gitbug.com and unpack the archive. Add the

ultrafast is a package to be used from Python (``import ultrafast``).

License
========

Expand Down
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pyyaml
scipy
numpy
15 changes: 15 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env python

from distutils.core import setup

setup(
name="ultrafast",
version="0.1",
description="Ultrafast optics package",
author="Marcelo J P Alcocer",
author_email="marcelo.j.p.alcocer@gmail.com",
url="https://github.com/marceloalcocer/ultrafast",
packages=["ultrafast"],
requires=["pyyaml", "scipy"],
provides=["ultrafast"]
)

0 comments on commit 9f7a414

Please sign in to comment.