-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (34 loc) · 936 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='perturbopy',
version='0.7.0',
description="Suite of Python scripts for Perturbo testing and postprocessing",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires='>=3.7.12',
include_package_data=True,
install_requires=[
'numpy>=1.21.4',
'pytest',
'pytest-order',
'h5py',
'PyYAML',
'pytest-profiling',
'matplotlib>=2.2.0',
'scipy'
],
extras_require={
'interactive': ['jupyter', 'pytest-plots'],
},
packages=find_packages(
where='./src'
),
package_dir={"": "src"},
entry_points={
'console_scripts': [
'input_generation=perturbopy.generate_input:input_generation',
],
},
)