-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
41 lines (39 loc) · 1.53 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
from setuptools import setup
try:
with open("README.rst", 'r') as f:
long_description = f.read()
except FileNotFoundError:
long_description = ''
with open('requirements.txt') as f:
required = f.read().splitlines()
#update version in init as well
setup(
name= 'processmcrat', #'ProcessMCRaT',
version='2.0.3',
description='The ProcessMCRaT library is a python package that can be used to process the output of the MCRaT code.',
license="MIT",
long_description=long_description,
author='Tyler Parsotan',
author_email='tyler.parsotan@nasa.gov',
url="https://github.com/parsotat/ProcessMCRaT",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Astronomy',
],
keywords='astronomy radiation-transfer hydrodynamics',
packages=['processmcrat','processmcrat.test'], #same as name
install_requires=required,
python_requires='>=3.9',
data_files=[
('Data_files',['processmcrat/Data_files/Dataset_lundman_1.csv']),
('Data_files',['processmcrat/Data_files/Dataset_lundman_2.csv']),
('Data_files',['processmcrat/Data_files/lundman_p_4_thetaj_0.1.csv']),
('Data_files',['processmcrat/Data_files/GRB_list.dat']),
('Data_files',['processmcrat/Data_files/FERMI_BEST_GRB.dat']),
],
include_package_data=True,
)