-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
62 lines (59 loc) · 2.27 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# -*- Mode: python; tab-width: 4; indent-tabs-mode:nil; coding:utf-8 -*-
# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
#
# PMDA
# Copyright (c) 2017 The MDAnalysis Development Team and contributors
# (see the file AUTHORS for the full list of names)
#
# Released under the GNU Public Licence, v2 or any higher version
from setuptools import setup, find_packages
import versioneer
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name='pmda',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Parallel Molecular Dynamics Analysis tools',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/MDAnalysis/pmda/',
author='Max Linke',
author_email='[email protected]',
license="GPLv2",
download_url="https://github.com/MDAnalysis/pmda/releases",
keywords="science parallel",
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
project_urls={
'Documentation': 'https://www.mdanalysis.org/pmda/',
'Source': 'https://github.com/MDAnalysis/pmda/',
'Issue Tracker': 'https://github.com/MDAnalysis/pmda/issues/',
'Mailing list': 'https://groups.google.com/group/mdnalysis-discussion',
},
packages=find_packages(),
install_requires=[
'MDAnalysis>=1.0.0',
'dask>=0.18',
'distributed',
'six',
'joblib', # cpu_count func currently
'networkx',
'scipy',
],
tests_require=[
'pytest',
'MDAnalysisTests>=1.0.0', # keep
], )