-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
35 lines (30 loc) · 1.09 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
#!/usr/bin/env python
try:
from setuptools import setup
have_setuptools = True
except ImportError:
from distutils.core import setup
have_setuptools = False
kwargs = {'name': 'opendeplete',
'version': '0.1',
'packages': ['opendeplete', 'opendeplete.integrator'],
'scripts': [],
# Metadata
'author': 'Colin Josey',
'author_email': '[email protected]',
'description': 'OpenDeplete',
'url': 'https://github.com/mit-crpg/opendeplete',
'classifiers': [
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Scientific/Engineering'
]}
if have_setuptools:
# Required dependencies
kwargs['install_requires'] = ['numpy', 'scipy', 'h5py', 'tqdm',
'requests', 'openmc']
setup(**kwargs)