This repository has been archived by the owner on Nov 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
62 lines (57 loc) · 1.94 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
# To update the package version number, edit deeprank/__version__.py
version = {}
with open(os.path.join(here, 'deeprank', '__version__.py')) as f:
exec(f.read(), version)
with open('README.md') as readme_file:
readme = readme_file.read()
setup(
name='deeprank',
version=version['__version__'],
description='Rank Protein-Protein Interactions using Deep Learning',
long_description=readme + '\n\n',
long_description_content_type='text/markdown',
author='Nicolas Renaud, CunLiang Geng Sonja Georgrievska, Li Xue',
url='https://github.com/DeepRank/deeprank',
project_urls={
'Source Code': 'https://github.com/DeepRank/deeprank',
'Documentation': 'https://deeprank.readthedocs.io',
'Issue tracker': 'https://github.com/DeepRank/deeprank/issues'
},
packages=find_packages(),
include_package_data=True,
license="Apache Software License 2.0",
keywords='deeprank',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
install_requires=[
'numpy >= 1.13',
'scipy',
'h5py',
'tqdm',
'pandas',
'mpi4py',
'matplotlib',
'torchsummary',
'torch',
'pdb2sql >= 0.5.0',
'freesasa==2.1.0;platform_system=="Linux"',
'freesasa==2.1.0;platform_system=="Darwin"'
],
extras_require={
'test': ['nose', 'coverage', 'pytest', 'pytest-cov',
'codacy-coverage', 'coveralls'],
'dev': ['prospector[with_pyroma]', 'autopep8', 'isort'],
'doc':['sphinx'],
'cuda': ['pycuda'],
}
)