Skip to content

Commit

Permalink
Add setup package data.
Browse files Browse the repository at this point in the history
  • Loading branch information
FredLoney committed Jul 31, 2019
1 parent 161b93c commit db0dcf8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Expand Up @@ -38,23 +38,23 @@ def requires():


def readme():
with open("README.rst") as f:
with open("README.md") as f:
return f.read()


setup(
name = 'immpload',
version = version('immpload'),
author = 'OHSU Knight Cancer Institute',
author = 'Oregon Health & Sciences University',
author_email = 'loneyf@ohsu.edu',
platforms = 'Any',
license = 'MIT',
keywords = 'Immpload',
packages = find_packages(exclude=['test**']),
package_data = dict(immpload=['conf/*.cfg']),
package_data = dict(immpload=['conf/*.yaml']),
scripts = glob.glob('bin/*'),
url = 'http://immpload.readthedocs.org/en/latest/',
description = 'Immport upload package',
url = 'https://github.com/biodev/imppload/',
description = 'Immport upload preparation',
long_description = readme(),
classifiers = [
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit db0dcf8

Please sign in to comment.