-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
47 lines (44 loc) · 1.22 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
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
with open("requirements.txt") as f:
requirements = f.readlines()
setup(
name="drishti-io",
keywords="drishti",
version="0.6",
author="Jean Luca Bez, Suren Byna",
author_email="[email protected], [email protected]",
description="",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hpc-io/drishti",
install_requires=[
'argparse',
'pandas',
'darshan>=3.4.4.0',
'rich==12.5.1',
'recorder-utils',
],
packages=find_packages(),
package_data={
'drishti.includes': [
'drishti/includes/snippets/*'
],
},
include_package_data=True,
entry_points={
"console_scripts": [
"drishti=drishti.reporter:main"
]
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3 :: Only"
],
python_requires='>=3.6',
)