-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (33 loc) · 880 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
import os
import sys
from setuptools import setup, find_packages
entry_points = {
'console_scripts': [
"pxx_job = polycrystalx.scripts.run_job:main",
"pxx_mpijob = polycrystalx.scripts.run_mpijob:main",
"pxx_suite = polycrystalx.scripts.run_suite:main",
]
}
setup(
name = 'polycrystalx',
author = 'Donald E. Boyce',
author_email = '[email protected]',
description = 'polycrystal material modeling',
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
],
packages = find_packages(),
entry_points = entry_points,
)
install_reqs = [
'dolfinx',
'ufl',
'numpy',
'scipy',
'h5py',
'pytest',
]