-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
65 lines (62 loc) · 3.58 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
63
64
65
###############################################################################
# correlationplus - A Python package to calculate, visualize and analyze #
# dynamical correlations maps of proteins. #
# Authors: Mustafa Tekpinar #
# Copyright Mustafa Tekpinar 2017-2018 #
# Copyright CNRS-UMR3528, 2019 #
# Copyright Institut Pasteur Paris, 2020-2021 #
# Copyright Mustafa Tekpinar 2022-2024 #
# #
# This file is part of correlationplus. #
# #
# correlationplus is free software: you can redistribute it and/or modify #
# it under the terms of the GNU Lesser General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# correlationplus is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU LESSER General Public License for more details. #
# #
# You should have received a copy of the GNU Lesser General Public License #
# along with correlationplus. If not, see <https://www.gnu.org/licenses/>. #
###############################################################################
from setuptools import setup, find_packages
from correlationplus import __version__ as cp_vers
setup(name='correlationplus',
version=cp_vers,
description="A Python package to calculate, visualize and analyze correlations of proteins.",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
author="Mustafa Tekpinar",
author_email="[email protected]",
url="https://github.com/tekpinar/correlationplus",
download_url="https://github.com/tekpinar/correlationplus",
license="LGPL",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry'
],
python_requires='>=3.6',
install_requires=[i for i in [l.strip() for l in open("requirements.txt").read().split('\n')] if i],
# zip_safe=False,
packages=[p for p in find_packages() if p != 'tests'],
# file where some variables must be fixed by install
entry_points={
'console_scripts': [
'correlationplus=correlationplus.scripts.correlationplus:main'
]
}
)