-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup-dev.py
59 lines (55 loc) · 2.63 KB
/
setup-dev.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
from setuptools import setup
mmtfPyspark_packages = ['mmtfPyspark',
'mmtfPyspark.datasets',
'mmtfPyspark.filters',
'mmtfPyspark.io',
'mmtfPyspark.mappers',
'mmtfPyspark.ml',
'mmtfPyspark.utils',
'mmtfPyspark.webfilters',
'mmtfPyspark.webservices',
'mmtfPyspark.interactions'
]
mmtfPyspark_dependencies = ['msgpack>=0.5.6',
'numpy>=1.15.4',
'ipywidgets>=7.4.2',
'mmtf-python>=1.1.2',
'requests>=2.20.0',
'matplotlib>=2.2.3',
'numba>=0.41.0',
'seaborn>=0.8.1',
'sympy>=1.1.1',
'py3Dmol>=0.8.0',
'scipy>=1.1.0',
'scikit-learn>=0.20.0',
'pandas>=0.23.4',
'py4j>=0.10.7',
'pyarrow>=0.11.1',
'xlrd>=1.1.0',
'nose',
'cython',
]
LONG_DESCRIPTION = """
**mmtfPyspark** is a python package that provides APIs and sample applications for distributed analysis and scalable mining of 3D biomacromolecular structures, such as the Protein Data Bank (PDB) archive. mmtfPyspark uses Big Data technologies to enable high-performance parallel processing of macromolecular structures.
"""
setup(name='mmtfPyspark',
version='0.3.0',
description='Methods for parallel and distributed analysis and mining of the Protein Data Bank using MMTF and Apache Spark',
long_description=LONG_DESCRIPTION,
url='https://github.com/sbl-sdsc/mmtf-pyspark',
author='Peter Rose',
author_email='[email protected]',
license='Apache License 2.0',
keywords='mmtf spark pyspark protein PDB',
packages=mmtfPyspark_packages,
install_requires=mmtfPyspark_dependencies,
python_requires='>=3.8',
include_package_data=True,
test_suite='nose.collector',
test_require=['nose'],
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6'],
zip_safe=False)