forked from zadorlab/sella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.59 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
#!/usr/bin/env python
import numpy as np
from setuptools import setup, Extension, find_packages
from Cython.Build import cythonize
with open('README.md', 'r') as f:
long_description = f.read()
ext_modules = [Extension('sella.force_match',
['sella/force_match.pyx']),
Extension('sella.cython_routines',
['sella/cython_routines.pyx']),
Extension('sella.internal_cython',
['sella/internal_cython.pyx']),
]
setup(name='Sella',
version='0.0.1',
author='Eric Hermes',
author_email='[email protected]',
long_description=long_description,
long_description_type='text/markdown',
packages=find_packages(),
ext_modules=cythonize(ext_modules),
include_dirs=[np.get_include()],
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Cython',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics'],
python_requires='>=3.5',
install_requires=['numpy>=1.14.0', 'scipy>=1.1.0', 'cython', 'ase'],
)