-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (32 loc) · 1.11 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
import setuptools
import sys
from linnaeo import __version__
reqs = ['pyqt5>=5.9','psutil','biopython','clustalo','bioservices',]
deps = []
if sys.platform == 'darwin':
deps.append('install/clustalo-0.1.2-cp37-cp37m-macosx_10_14_x86_64.whl')
elif sys.platform == 'linux':
deps.append('install/clustalo-0.1.2-cp38-cp38-linux_x86_64.whl')
elif sys.platform == 'win32':
deps.append('install/clustalo-0.1.2-cp37-cp37m-win_amd64.whl')
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="linnaeo",
version=__version__,
author="Aaron Wolfe",
author_email="[email protected]",
description="A tool for creating and categorizing protein alignments",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/beowulfey/linnaeo",
packages=setuptools.find_packages(),
install_requires=reqs,
dependency_links=deps,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPL3",
"Operating System :: Windows",
],
python_requires='>=3.7',
)