Skip to content

Commit

Permalink
Merge pull request #64 from UC-Davis-molecular-computing/dev
Browse files Browse the repository at this point in the history
fixed documentation
  • Loading branch information
dave-doty authored May 30, 2020
2 parents 10cf39d + 5a2ae17 commit 3163925
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import os
import sys

import scadnano
# import scadnano

sys.path.insert(0, os.path.abspath('../scadnano'))
# print(sys.path)
Expand All @@ -31,10 +31,10 @@
author = 'David Doty'

# The full version, including alpha/beta/rc tags
# version = '0.7.0'
# release = '0.7.0'
version = scadnano.current_version
release = scadnano.current_version
version = '0.7.0'
release = '0.7.0'
# version = scadnano.current_version
# release = scadnano.current_version

# -- General configuration ---------------------------------------------------

Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from setuptools import setup, find_packages

import scadnano
# import scadnano

# read the contents of your README file
from os import path
Expand All @@ -21,15 +21,15 @@

setup(name='scadnano',
packages=['scadnano'],
version=scadnano.current_version,
# version='0.7.0',
# version=scadnano.current_version,
version='0.7.0',
# download_url=f'https://github.com/UC-Davis-molecular-computing/scadnano-python-package/archive/v{scadnano.current_version}.zip',
download_url=f'https://github.com/UC-Davis-molecular-computing/scadnano-python-package/archive/v0.7.0.zip',
license='MIT',
description="Python scripting library for generating designs readable by scadnano.",
author="David Doty",
author_email="doty@ucdavis.edu",
url="https://github.com/UC-Davis-molecular-computing/scadnano-python-package",
download_url=f'https://github.com/UC-Davis-molecular-computing/scadnano-python-package/archive/v{scadnano.current_version}.zip',
# download_url=f'https://github.com/UC-Davis-molecular-computing/scadnano-python-package/archive/v0.7.0.zip',
long_description=long_description,
long_description_content_type='text/markdown; variant=GFM',
requires=['xlwt']
Expand Down

0 comments on commit 3163925

Please sign in to comment.