-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
101 lines (88 loc) · 4.09 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/usr/bin/python3
from setuptools import setup
from setuptools import find_packages
import codecs
import os.path
def read(rel_path):
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, rel_path), 'r') as fp:
return fp.read()
def get_info(rel_path, info):
for line in read(rel_path).splitlines():
if line.startswith(f'__{info}__'):
delim = '"' if '"' in line else "'"
return line.split(delim)[1]
else:
raise RuntimeError(f"Unable to find {info} string.")
if __name__ == '__main__':
setup(
name='lbh15',
version=get_info('lbh15/__init__.py', 'version'),
packages=find_packages(),
include_package_data=True,
author=get_info('lbh15/__init__.py', 'author'),
author_email='daniele.panico@newcleo.com, daniele.tomatis@newcleo.com',
description='Python implementation of liquid metal properties from '
'Handbook on Lead-bismuth Eutectic Alloy and '
'Lead Properties, Materials Compatibility, '
'Thermal-hydraulics and Technologies',
long_description_content_type='text/x-rst',
long_description=open('README.rst', 'r').read(),
license='lgpl v3',
python_requires='>=3.8.10',
install_requires=['scipy>=1.8.1', 'numpy>=1.22.3', 'sphinx>=6.2.1',
'sphinx-rtd-theme>=1.3.0', 'myst-parser>=1.0.0', 'sphinxcontrib-bibtex>=2.5.0'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
"""
Developers memo for release:
1. Update package information (on master):
- Change version in lbh15/__init__.py
- Change date in lbh15/__init__.py
- Change date in README.rst
- Update the "docs/source/release_notes.rst"
- Update the CHANGELOG.rst file with the features introduced in the last release
- Update author list in README.rst
2. Test the package build and install on test-pypi:
a. Change the name of the package in setup.py and pyproject.toml in 'lbh15-test'
b. python3 setup.py sdist # in project directory
c. twine check dist/* # check that package is ok
d. twine upload --repository testpypi dist/* # verify upload is successful on test-PyPI
e. crete a python3 virtual enviroment and verify the correct package installation form test-pypi:
python3 -m venv venv_install
source venv_install/bn/activate
pip3 install wheel
pip3 install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple lbh15-test
cd tests/
<execute tests>
f. If every thing is ok change back the package name in 'lbh15'
3. Create tag (on master):
a. commit previous release info modifications
b. git tag v<version>
c. git push <origin_name> <tag_name>
d. git diff --stat=200 <previous_tag> <tag_name> > log.diff.<tag_name>
e. You should see the tag on github page as well. Then on github do:
- https://github.com/newcleo-dev-team/lbh15/releases
- Click on "Draft a new release"
- Choose the tag
- Insert the title name as "Release v<version>"
- In the description write:
Changelog between v<previous varsion> and v<version>
```
< content of log.diff.<tag_name> >
```
4. Upload the package on PyPI:
a. repeat step 2.b and 2.c
b. twine upload dist/*
"""