Skip to content

Commit 6653585

Browse files
committed
PRODUCTION RELEASE
1 parent 53d6ced commit 6653585

File tree

5 files changed

+21
-3
lines changed

5 files changed

+21
-3
lines changed

HISTORY.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
=======
2+
History
3+
=======
4+
5+
1.0.0 (2019-07-01)
6+
-------------------
7+
8+
* First production release

MANIFEST.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
include LICENSE
2+
include HISTORY.rst
3+
include README.rst

README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
:target: https://eng-tools.github.io
1818
:alt: ECP project
1919

20+
.. image:: https://zenodo.org/badge/125842866.svg
21+
:target: https://zenodo.org/badge/latestdoi/125842866
22+
:alt: DOI
23+
2024
*****
2125
eqsig
2226
*****

eqsig/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
__project__ = "eqsig"
22
__author__ = "Maxim Millen"
3-
__version__ = "0.6.8"
3+
__version__ = "1.0.0"
44
__license__ = "MIT"

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,19 @@
77
with open('README.rst') as readme_file:
88
readme = readme_file.read()
99

10+
with open('HISTORY.rst') as history_file:
11+
history = history_file.read()
12+
1013
setup(name='eqsig',
1114
version=about['__version__'],
1215
description='Signal processing for field and experimental data for earthquake engineering',
13-
long_description=readme,
16+
long_description=readme + '\n\n' + history,
1417
url='',
1518
author=about['__author__'],
1619
author_email='mmi46@uclive.ac.nz',
1720
license=about['__license__'],
1821
classifiers=[
19-
'Development Status :: 4 - Beta',
22+
'Development Status :: 5 - Production/Stable',
2023
'Intended Audience :: Science/Research',
2124
'Topic :: Scientific/Engineering',
2225
'License :: OSI Approved :: MIT License',

0 commit comments

Comments
 (0)