-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
59 lines (56 loc) · 2.16 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
###############################################################################
##### Setup.py - installs all the required packages and dependancies #####
###############################################################################
import pathlib
from setuptools import setup, find_packages
import pySAR
#parse README file
HERE = pathlib.Path(__file__).parent
README = (HERE / 'README.md').read_text()
setup(name=pySAR.__name__,
version=pySAR.__version__,
description=pySAR.__description__,
long_description = README,
long_description_content_type = "text/markdown",
author=pySAR.__license__,
author_email=pySAR.__authorEmail__,
maintainer=pySAR.__maintainer__,
license=pySAR.__license__,
url=pySAR.__url__,
download_url=pySAR.__download_url__,
keywords=pySAR.__keywords__,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules'
],
install_requires=[
'numpy',
'pandas',
'scipy',
'delayed',
'scikit-learn',
'matplotlib',
'seaborn',
'tqdm',
'aaindex',
'protpy'
],
test_suite=pySAR.__test_suite__,
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests", "Results"]),
include_package_data=True,
zip_safe=False)