forked from clauswilke/PeptideBuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (27 loc) · 1.21 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
#!/usr/bin/python
##############################################################################
## PeptideBuilder: builds peptide models in PDB format using geometrical inputs
##
## Written by Matthew Z Tien ([email protected])
##############################################################################
'''
Setup.py script (uses setuptools) for building, testing, and installing PeptideBuilder.
To build and install the package as root (globally), enter (from this directory!) -
sudo python setup.py build
sudo python setup.py install
To install for a particular user (locally), enter -
python setup.py build
python setup.py build --user # where user is the computer account to install PeptideBuilder in
'''
from setuptools import setup
setup(name = 'PeptideBuilder',
version = '1.0.4',
description = 'Tools to create peptide PDB files using geometry as input',
author = 'Matthew Z. Tien',
author_email = '[email protected]',
url = 'https://github.com/mtien/PeptideBuilder',
download_url = 'https://github.com/mtien/PeptideBuilder/archive/v1.0.4.tar.gz',
platforms = 'Tested on Mac OS X.',
packages = ['PeptideBuilder'],
install_requires=['Biopython']
)