File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010
11111 . First deploy to test and ensure everything is working correctly (see above).
12122 . cd to * genepattern-python* directory
13- 3 . Upload via * python setup.py sdist upload*
13+ 3 . Upload via python setup.py sdist bdist_wheel; twine upload dist/ *
14144 . If the upload fails go to https://pypi.python.org/pypi and manually upload dist/genepattern-python-* .tar.gz
15155 . Test the deploy by uninstalling and reinstalling the package: * sudo pip uninstall genepattern-python* and * sudo pip install genepattern-python* .
1616
Original file line number Diff line number Diff line change 77"""
88
99__authors__ = ['Thorin Tabor' , 'Chet Birger' ]
10- __copyright__ = 'Copyright 2014-2018 , Regents of the University of California & Broad Institute'
11- __version__ = '1.4.3 '
10+ __copyright__ = 'Copyright 2014-2019 , Regents of the University of California & Broad Institute'
11+ __version__ = '1.4.5.post1 '
1212__status__ = 'Production'
1313
1414# Import core functionality
Original file line number Diff line number Diff line change 1- from distutils . core import setup
1+ from setuptools import setup
22
33
44# Read version and other metadata from file
5- __version__ = '1.4.3'
5+ __version__ = '1.4.5.post1'
6+
7+ with open ('README.md' ) as f :
8+ long_description = f .read ()
69
710setup (
811 name = 'genepattern-python' ,
912 packages = ['gp' ],
1013 version = __version__ ,
14+ long_description = long_description ,
15+ long_description_content_type = "text/markdown" ,
1116 description = 'Library for programmatically interacting with GenePattern from Python.' ,
1217 author = 'Thorin Tabor' ,
1318 author_email = 'tmtabor@cloud.ucsd.edu' ,
You can’t perform that action at this time.
0 commit comments