-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
13 lines (11 loc) · 946 Bytes
/
setup.py
File metadata and controls
13 lines (11 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
from distutils.core import setup
setup( name = 'trajectory plotting' ,
version = '0.32' ,
description = 'Utilities to plot Trajalign trajectories' ,
author = 'Andrea Picco',
author_email = 'andrea.picco@unige.ch',
url = 'http://apicco.github.io/trajectory_plotting/',
download_url = 'https://github.com/apicco/trajectory_plotting/archive/master.zip',
packages = [ 'trajplot' ],
license = 'The software is distributed under the terms of the GNU General Public License Version 3, June 2007. Trajplot, as well as Trajalign are free softwares and come with ABSOLUTELY NO WARRANTY. You are welcome to redistribute the software. However, we appreciate is use of such software would result in citations of Picco, A., Kaksonen, M., _Precise tracking of the dynamics of multiple proteins in endocytic events_, Methods in Cell Biology, Vol. 139, pages 51-68 (2017) http://www.sciencedirect.com/science/article/pii/S0091679X16301546'
)