-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (34 loc) · 1.45 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
from setuptools import setup, find_packages
setup(name = 'morphoscanner',
version = '0.0.5_dev',
description = 'A library to handle Martini CG Gromacs trajectory data of Self Assembling Peptides',
url = 'https://github.com/lillux/morphoscanner',
author = 'Calogero Carlino, Federico Fontana',
author_email = '[email protected]',
license = 'GPLv3',
zip_safe=False,
install_requires=['numpy>=1.18.1',
'scipy>=1.5.2',
'MDAnalysis>=1.0.0',
'pandas>=1.0.3',
'torch>=1.1.0',
'networkx>=2.5',
'plotly',
'matplotlib',
'openpyxl',
'tqdm'],
extras_require = {'full' : ['pygnuplot']},
optional = True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
packages=find_packages(),
include_package_data=True)