forked from Crespo-Otero-group/fromage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 1.33 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
#!/usr/bin/env python
from setuptools import setup, Extension
fdist_module = Extension('fromage.fdist._fdist', sources=['fromage/fdist/fdist.i','fromage/fdist/fdist.cpp'],swig_opts=['-c++'])
setup(name='fromage',
version='1.0',
description='FRamewOrk for Molecular AGgregate Excitations',
author='Miguel Rivera, Michael Dommett, Rachel Crespo-Otero',
author_email='[email protected]',
license='MIT',
ext_modules=[fdist_module],
packages=['fromage',
'fromage.fdist',
'fromage.io',
'fromage.scripts',
'fromage.utils',
'fromage.utils.exci_coupling',
'fromage.utils.array_operations',
'fromage.utils.mol'],
scripts=['fromage/scripts/fro_assign_charges.py',
'fromage/scripts/fro_run.py',
'fromage/scripts/fro_dimer_tools.py',
'fromage/scripts/fro_pick_mol.py',
'fromage/scripts/fro_pop_stat.py',
'fromage/scripts/fro_prep_run.py',
'fromage/scripts/fro_coupling.py',
'fromage/scripts/fro_exciton_classification.py',
'fromage/scripts/fro_volumetrics.py',
'fromage/scripts/fro_uc_tools.py'],
install_requires=[
'numpy',
'scipy',],
)