forked from MDAnalysis/GridDataFormats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (44 loc) · 2.11 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
41
42
43
44
45
46
# setuptools installation of Hop
# Copyright (c) 2007-2015 Oliver Beckstein <[email protected]>
# Released under the GNU Public License 3 (or higher, your choice)
# See the file COPYING for details.
from setuptools import setup, find_packages
import versioneer
import codecs
with codecs.open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(name="GridDataFormats",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Reading and writing of data on regular grids in Python",
long_description=long_description,
author="Oliver Beckstein",
author_email="[email protected]",
license="LGPLv3",
url="https://github.com/MDAnalysis/GridDataFormats",
download_url="https://github.com/MDAnalysis/GridDataFormats/releases",
keywords="science array density",
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows ',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=find_packages(exclude=[]),
package_data={'gridData': ['tests/datafiles/*.dx', 'tests/datafiles/*.ccp4',
'tests/datafiles/*.plt']},
install_requires=['numpy>=1.0.3', 'six', 'scipy'],
tests_require=['pytest', 'numpy'],
zip_safe=True,
)