-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 885 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
with open ('directdm/_version.py') as f:
exec(f.read())
setup(name='directdm',
version=__version__,
author='Fady Bishara, Joachim Brod, Benjamin Grinstein, Jure Zupan',
author_email='joachim.brod@uc.edu',
url='https://directdm.github.io',
description='A python package for dark matter direct detection',
long_description=""" This package contains classes for Wilson coefficients
for dark matter -- standard model interactions,
in effective theories at various scales. It allows for
renormalization-group running, and matching between the
different effective theories.""",
license='MIT',
packages=find_packages(),
install_requires=['numpy', 'scipy', 'setuptools']
)