-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 735 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, Extension
import numpy.distutils.misc_util
setup(name='spinpack',
packages=['spinpack'],
ext_modules=[Extension("spinpack.spin", ["spinpack/spin.c"])],
include_dirs=numpy.distutils.misc_util.get_numpy_include_dirs(),
version='0.2',
description='Get the spinangle from a NAMD trajectory',
classifiers=[
'Development Status :: 0 - Alpha',
'License :: Friand_Dur',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
author='Marlon Sidore',
author_email='marlon.sidore@gmail.com',
license='CRAPL',
install_requires=[
'MDAnalysis',
'numpy',
],
zip_safe=False)