Skip to content

Commit

Permalink
Merge pull request #120 from sloria/setuppy-fixes
Browse files Browse the repository at this point in the history
Add long_description; fix header styling; add py36 classifier
  • Loading branch information
betatim committed Oct 13, 2017
2 parents cf525b4 + ebff819 commit feafef2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
:alt: osfclient
:align: right

*********
osfclient
=========
*********

The ``osfclient`` is a python library and a command-line client for up-
and downloading files to and from your `Open Science
Expand Down
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
with open(os.path.join(here, 'requirements.txt')) as f:
required = f.read().splitlines()

with open(os.path.join(here, 'README.rst')) as f:
long_description = f.read()


extra_files = []
extra_files.append(os.path.join(here, 'LICENSE'))
Expand All @@ -28,7 +31,7 @@
version=__version__,

description='An OSF command-line library',
long_description='An OSF command-line client and library.',
long_description=long_description,

# The project's main homepage.
url='https://github.com/dib-lab/osf-cli',
Expand All @@ -52,6 +55,7 @@
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: BSD License',
'Topic :: Utilities'
],
Expand Down

0 comments on commit feafef2

Please sign in to comment.