|
7 | 7 |
|
8 | 8 | from setuptools import setup |
9 | 9 |
|
10 | | -description = 'This package is a module for simulating dynamic 1D and 2D heat ' |
11 | | -description += 'transfer processes by using the finite difference method. The ' |
12 | | -description += 'packages is based on thermal objects. Two different ' |
13 | | -description += 'approaches can be used: single thermal object and a system of ' |
14 | | -description += 'thermal objects that can contact with each other. The heatrapy' |
15 | | -description += 'package includes the incorporation of phase transitions.' |
| 10 | +description = ( |
| 11 | + 'This package is a module for simulating dynamic 1D and 2D heat transfer ' |
| 12 | + 'processes by using the finite difference method. The packages is based ' |
| 13 | + 'on thermal objects. Two different approaches can be used: single thermal ' |
| 14 | + 'object and a system of thermal objects that can contact with each other. ' |
| 15 | + 'The heatrapy package includes the incorporation of phase transitions.' |
| 16 | +) |
16 | 17 |
|
17 | 18 |
|
18 | | -setup(name='heatrapy', |
19 | | - version='2.1.0', |
20 | | - description='Library for simulating 1D and 2D heat transfer processes', |
21 | | - long_description=description, |
22 | | - classifiers=[ |
23 | | - 'Development Status :: 3 - Alpha', |
24 | | - 'License :: OSI Approved :: MIT License', |
25 | | - 'Programming Language :: Python :: 3.7', |
26 | | - 'Topic :: Scientific/Engineering :: Physics', |
27 | | - ], |
28 | | - url='https://github.com/djsilva99/heatrapy', |
29 | | - author='Daniel Silva', |
30 | | - author_email='djsilva@gmx.com', |
31 | | - license='MIT', |
32 | | - packages=['heatrapy'], |
33 | | - install_requires=[ |
34 | | - 'numpy==2.2.6', 'matplotlib==3.10.8' |
35 | | - ], |
36 | | - include_package_data=True, |
37 | | - zip_safe=False) |
| 19 | +setup( |
| 20 | + name='heatrapy', |
| 21 | + version='2.1.1', |
| 22 | + description='Library for simulating 1D and 2D heat transfer processes', |
| 23 | + long_description=description, |
| 24 | + classifiers=[ |
| 25 | + 'Development Status :: 3 - Alpha', |
| 26 | + 'License :: OSI Approved :: MIT License', |
| 27 | + 'Programming Language :: Python :: 3.14', |
| 28 | + 'Topic :: Scientific/Engineering :: Physics', |
| 29 | + ], |
| 30 | + url='https://github.com/djsilva99/heatrapy', |
| 31 | + author='Daniel Silva', |
| 32 | + author_email='djsilva@gmx.com', |
| 33 | + license='MIT', |
| 34 | + packages=['heatrapy'], |
| 35 | + install_requires=[ |
| 36 | + 'numpy==2.4.2', |
| 37 | + 'matplotlib==3.10.8' |
| 38 | + ], |
| 39 | + include_package_data=True, |
| 40 | + zip_safe=False |
| 41 | +) |
0 commit comments