Skip to content

Commit

Permalink
Upgrade to setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
CalebBell committed Dec 14, 2019
1 parent f3f9cbe commit 423c58f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ htmlcov
__pycache__
*kate-swp
.spyproject

fluids.egg-info

# Compiled source #
###################
*.com
Expand Down
5 changes: 4 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@ include LICENSE.txt AUTHORS README.rst pytest.ini
recursive-include tests *
recursive-include docs *
global-exclude __pycache__
global-exclude *.py[co]
global-exclude *.py[co]
global-exclude *.coverage
global-exclude *.so
global-exclude *.ipynb_checkpoints
19 changes: 11 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.'''

from distutils.core import setup

from setuptools import setup
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
Expand Down Expand Up @@ -53,23 +53,26 @@
'Topic :: Scientific/Engineering :: Physics',
]



description = 'Heat transfer component of Chemical Engineering Design Library (ChEDL)'
keywords = ('heat-transfer heat-exchanger air-cooler tube-bank condensation '
'boiling chemical-engineering mechanical-engineering pressure-drop '
'radiation process-simulation engineering insulation flow-boiling '
'nucleate-boiling reboiler cross-flow')


setup(
name = 'ht',
packages = ['ht'],
license='MIT',
version = '0.1.53',
description = 'Heat transfer component of Chemical Engineering Design Library (ChEDL)',
version = '0.1.54',
description = description,
author = 'Caleb Bell',
long_description = open('README.rst').read(),
platforms=["Windows", "Linux", "Mac OS", "Unix"],
author_email = 'Caleb.Andrew.Bell@gmail.com',
url = 'https://github.com/CalebBell/ht',
download_url = 'https://github.com/CalebBell/ht/tarball/0.1.53',
keywords = ['chemical engineering', 'heat transfer', 'mechanical engineering'],
download_url = 'https://github.com/CalebBell/ht/tarball/0.1.54',
keywords = keywords,
classifiers = classifiers,
install_requires=['fluids>=0.1.75', 'numpy>=1.5.0', 'scipy>=0.9.0'],
package_data={'ht': ['data/*']},
Expand Down

0 comments on commit 423c58f

Please sign in to comment.