-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
69 lines (65 loc) · 2.77 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
66
67
68
69
###############################################################################
##### Setup.py - installs all the required packages and dependancies #####
###############################################################################
import pathlib
from setuptools import setup, find_packages
#get path to README file
HERE = pathlib.Path(__file__).parent
README = (HERE / 'README.md').read_text()
#protPy package metadata
__name__ = 'protpy'
__version__ = "1.2.1"
__description__ = "Python package for generating various biochemical, physicochemical and structural descriptors/features of protein sequences."
__author__ = 'AJ McKenna: https://github.com/amckenna41'
__authorEmail__ = '[email protected]'
__maintainer__ = "AJ McKenna"
__license__ = 'MIT'
__url__ = 'https://github.com/amckenna41/protPy'
__download_url__ = "https://github.com/amckenna41/protPy/archive/refs/heads/main.zip"
__status__ = "Production"
__keywords__ = ["bioinformatics", "protein engineering", "python", "pypi", "machine learning", \
"aaindex", "protein descriptors", "physicochemical descriptors", "biochemical descriptors"
"structural descriptors", "pySAR"]
__test_suite__ = "tests"
setup(name=__name__,
version=__version__,
description=__description__,
long_description = README,
long_description_content_type = "text/markdown",
author=__license__,
author_email=__authorEmail__,
maintainer=__maintainer__,
license=__license__,
url=__url__,
download_url=__download_url__,
keywords=__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=[
"aaindex",
"numpy",
"pandas",
"varname",
],
test_suite=__test_suite__,
# packages=find_packages(), #create Manifest file to ignore results folder in dist
packages=find_packages(),
include_package_data=True,
zip_safe=False)