Skip to content

Commit b200512

Browse files
committed
Updated PyPI deploy
1 parent 9478ea6 commit b200512

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

DEPLOY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
1. First deploy to test and ensure everything is working correctly (see above).
1212
2. 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/*
1414
4. If the upload fails go to https://pypi.python.org/pypi and manually upload dist/genepattern-python-*.tar.gz
1515
5. Test the deploy by uninstalling and reinstalling the package: *sudo pip uninstall genepattern-python* and *sudo pip install genepattern-python* .
1616

gp/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
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

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
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

710
setup(
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',

0 commit comments

Comments
 (0)