Skip to content

Commit 3d2df9d

Browse files
committed
dump version
1 parent 3315176 commit 3d2df9d

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ long_description = file: README.md
55
long_description_content_type = text/markdown; charset=UTF-8
66
url = https://github.com/hpc-io/drishti
77
keywords = drishti
8-
version = 0.3
8+
version = 0.4
99
author = Jean Luca Bez, Suren Byna
1010
1111
classifiers =
@@ -23,6 +23,7 @@ install_requires =
2323
argparse
2424
pandas
2525
darshan
26+
rich ==12.5.1
2627
python_requires = >= 3.6
2728

2829
[options.package_data]

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
requirements = f.readlines()
88

99
setuptools.setup(
10-
name="drishti",
10+
name="pydrishti",
1111
keywords="drishti",
12-
version="0.3",
12+
version="0.4",
1313
author="Jean Luca Bez, Suren Byna",
1414
1515
description="",
@@ -19,14 +19,15 @@
1919
install_requires=[
2020
'argparse',
2121
'pandas',
22-
'darshan'
22+
'darshan',
23+
'rich ==12.5.1',
2324
],
2425
packages=[
2526
'drishti'
2627
],
2728
package_data={
2829
'drishti': [
29-
'snippets/*'
30+
'drishti/snippets/*',
3031
],
3132
},
3233
include_package_data=True,

0 commit comments

Comments
 (0)