-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
22 lines (20 loc) · 868 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
from setuptools import setup, Extension
ext_mod = Extension("_rundec",
sources=["_rundec.cc", "CRunDec3/CRunDec.3.1.cpp"],
)
setup(name="rundec",
version="0.6",
author="David M. Straub",
author_email="[email protected]",
url="https://github.com/DavidMStraub/rundec-python",
description="A Python wrapper around the CRunDec package for the "
" running and decoupling of the strong coupling constant "
"and quark masses",
long_description="""`CRunDec` is a C++ program developed by
Florian Herren and Matthias Steinhauser. This Python package
provides a thin wrapper around `CRunDec` generated with SWIG.""",
license="MIT",
py_modules=['rundec'],
ext_modules=[ext_mod],
extras_require={'testing': ['pytest']},
)