-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 845 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 845 Bytes
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
#!/usr/bin/env python3
"""
Setup tools installation.
Run this script to install or upgrade multiprot.
"""
import os
from setuptools import setup, find_packages
REQUIREMENTS = open(os.path.join(os.path.dirname(__file__),
'requirements.txt')).readlines()
setup(name='multiprot',
version='1.0.0',
install_requires=REQUIREMENTS,
packages=find_packages(),
include_package_data=True,
scripts=['multiprot/scripts/multipr'],
author="Francisco Javier Guzman-Vega",
description=("Automated pipeline to build protein models connecting two \
or more structured domains with disordered linkers."),
author_email="francisco.guzmanvega@kaust.edu.sa",
url="https://github.com/StruBE-KAUST/multiprot",
python_requires='>=3',
)