-
Notifications
You must be signed in to change notification settings - Fork 272
/
update_source.py
47 lines (41 loc) · 1.89 KB
/
update_source.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
from os import path
from datetime import datetime
from platform import uname, python_version, python_build, python_compiler
from json import load
# reads _version.json
version_dict = load(open('_version.json', 'r'))
version = str(version_dict['version'])
author = str(version_dict['author'])
email = str(version_dict['email'])
license = str(version_dict['license'])
url = str(version_dict['url'])
description = str(version_dict['description'])
package_name = str(version_dict['package_name'])
package_folder = str(version_dict['package_folder'])
status = str(version_dict['status'])
long_description = str(open('README.rst').read())
# creates version.py from _version.json
with open(path.join(package_name, 'version.py'), 'w+') as project_version_file:
project_version_file.write('\n'.join([
'# THIS FILE IS AUTO-GENERATED. PLEASE DO NOT MODIFY',
'# version file for ' + package_name,
'# generated on ' + datetime.now().__str__(),
'# on system ' + str(uname()),
'# with Python ' + python_version() + ' - ' + str(python_build()) + ' - ' + python_compiler(),
'#',
'__version__ = ' + "'" + version + "'",
'__author__ = ' + "'" + author + "'",
'__email__ = ' + "'" + email + "'",
'__url__ = ' + "'" + url + "'",
'__description__ = ' + "'" + description + "'",
'__status__ = ' + "'" + status + "'",
'__license__ = ' + "'" + license + "'",
''])) # empty blank line at the end of the version.py file
# creates CHANGES.txt
with open(path.join('CHANGES.txt'), 'w+') as changes_file, open(path.join('_changelog.txt'), 'r') as project_changelog_file:
# changes_file.write('\n'.join([
# '# changes file for ' + package_name,
# '# generated on ' + datetime.now().__str__(),
# '# version ' + version,
# '']))
changes_file.write(project_changelog_file.read())