Skip to content

Commit

Permalink
Packaging 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesPHoughton committed Oct 16, 2017
1 parent d95fecc commit e9993ac
Show file tree
Hide file tree
Showing 27 changed files with 250 additions and 333 deletions.
564 changes: 242 additions & 322 deletions .idea/workspace.xml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2013 James Houghton
Copyright (c) 2013-2017 James Houghton

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
7 changes: 2 additions & 5 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ setup.cfg
setup.py
pysd/__init__.py
pysd/_version.py
pysd/builder.py
pysd/functions.py
pysd/output_style.yapf
pysd/pysd.py
pysd/utils.py
pysd/vensim2py.py
pysd/testing.py
pysd/py_backend/output_style.yapf
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include pysd/pyoutput_style.yapf
include pysd/py_backend/output_style.yapf
Binary file removed dist/pysd-0.1.0.tar.gz
Binary file not shown.
Binary file removed dist/pysd-0.1.1.tar.gz
Binary file not shown.
Binary file removed dist/pysd-0.2.1.tar.gz
Binary file not shown.
Binary file removed dist/pysd-0.2.2.tar.gz
Binary file not shown.
Binary file removed dist/pysd-0.2.3.tar.gz
Binary file not shown.
Binary file removed dist/pysd-0.2.4.tar.gz
Binary file not shown.
Binary file removed dist/pysd-0.2.5.tar.gz
Binary file not shown.
Binary file removed dist/pysd-0.2.6.tar.gz
Binary file not shown.
Binary file removed dist/pysd-0.3.0.tar.gz
Binary file not shown.
Binary file removed dist/pysd-0.3.2.tar.gz
Binary file not shown.
Binary file removed dist/pysd-0.5.0.macosx-10.5-x86_64.tar.gz
Binary file not shown.
Binary file removed dist/pysd-0.6.0.tar.gz
Binary file not shown.
Binary file removed dist/pysd-0.6.2.macosx-10.6-x86_64.tar.gz
Binary file not shown.
Binary file removed dist/pysd-0.6.3.tar.gz
Binary file not shown.
Binary file removed dist/pysd-0.7.1.tar.gz
Binary file not shown.
Binary file removed dist/pysd-0.7.2.tar.gz
Binary file not shown.
Binary file removed dist/pysd-0.7.4.tar.gz
Binary file not shown.
Binary file removed dist/pysd-0.7.5.tar.gz
Binary file not shown.
Binary file removed dist/pysd-0.7.8.tar.gz
Binary file not shown.
Binary file added dist/pysd-0.8.0-py2.py3-none-any.whl
Binary file not shown.
Binary file added dist/pysd-0.8.0.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion pysd/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.7.12"
__version__ = "0.8.0"

6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import print_function

from distutils.core import setup
from setuptools import setup

exec(open('pysd/_version.py').read())
print(__version__)
Expand All @@ -17,7 +17,7 @@
license='LICENSE.txt',
description='System Dynamics Modeling in Python',
long_description=long_description,
keywords=['System Dynamics', 'Vensim'],
keywords=['System Dynamics', 'Vensim', 'XMILE'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
Expand All @@ -32,6 +32,6 @@
'yapf',
'xarray'
],
package_data={'pysd': ['*.yapf']},
package_data={'pysd': ['py_backend/output_style.yapf']},
include_package_data=True
)

0 comments on commit e9993ac

Please sign in to comment.