-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (32 loc) · 1.34 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
#!/usr/bin/env python
# -*- coding: utf-8; fill-column: 120 -*-
#
# This file is part of the CMI classical-rotation simulations
from setuptools import setup
extra_compile_args = []
library_dirs = []
long_description = """CMI classical-physics rotational molecular-dynamics simulations (CMIclassirot)
This package provides facilities for the simulation of the rotation dynamics of molecules and particles in external
electric fields.
"""
name = 'CMIclassirot'
release = '0.9.1'
version = '0.9.1'
setup(name=name,
author = "CFEL Controlled Molecule Imaging group",
maintainer = "CFEL Controlled Molecule Imaging group",
maintainer_email = "[email protected]",
url = "https://www.controlled-molecule-imaging.org/research/further_projects/software",
license = "GPLv3",
description = "CMI classical-physics rotational molecular-dynamics simulations",
long_description = long_description,
version = version,
packages = ['cmiclassirot'],
scripts = ['bin/cmiclassirot',
'bin/cmiclassirot-plot'],
python_requires = '>=3.9',
install_requires = ['numpy>=1.16.0',
'pyquaternion',
'scipy>=1.3.0',
'tables'],
)