Skip to content

Commit

Permalink
Cleanup on setuptools.
Browse files Browse the repository at this point in the history
  • Loading branch information
DallasTrinkle committed Jul 12, 2017
1 parent 0993514 commit d2a5d2a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
# The short X.Y version.
version = '1.2'
# The full version, including alpha/beta/rc tags.
release = '1.2.3'
release = '1.2.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -298,7 +298,7 @@
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'Onsager', 'Onsager Documentation',
author, 'Onsager', 'One line description of project.',
author, 'Onsager', 'Transport coefficient calculation from master equation.',
'Miscellaneous'),
]

Expand Down
Binary file modified manual.pdf
Binary file not shown.
8 changes: 8 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
[metadata]
description-file = README.md

[build_sphinx]
source-dir = doc/source
build-dir = ../Onsager-docs
all_files = 1

[upload_sphinx]
upload-dir = ../Onsager-docs
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,20 @@ def my_test_suite():
setup(
name = 'onsager',
packages = ['onsager'],
version = '1.2.3',
version = '1.2.4',
description = 'A package to compute Onsager coefficients for vacancy-mediated diffusion and interstitial elastodiffusion tensors',
long_description=long_description,
author = 'Dallas R. Trinkle',
author_email = '[email protected]',
license='MIT', # LICENSE.txt
url = 'https://github.com/DallasTrinkle/onsager', # use the URL to the github repo
download_url = 'https://github.com/DallasTrinkle/onsager/tarball/v1.2.3', # for when we upload
download_url = 'https://github.com/DallasTrinkle/onsager/tarball/v1.2.4', # for when we upload
keywords = ['diffusion', 'elastodiffusion', 'mass transport',
'Onsager coefficients', 'transport coefficieints'],
package_data = {
'onsager': ['onsager/*.pl']
},
include_package_data = True,
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
Expand Down

0 comments on commit d2a5d2a

Please sign in to comment.