Skip to content

Commit

Permalink
need a manifest file to make setup happy about the readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ruebot committed Sep 26, 2013
1 parent 2c2734a commit bdc45c5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,2 @@
include LICENSE
include README.rst
8 changes: 3 additions & 5 deletions setup.py
Expand Up @@ -4,20 +4,18 @@
"""
This module can be used to validate BagitProfiles.
"""
with open('README.rst') as file:
long_description = file.read()

setup(
name = 'bagit_profile',
version = '0.0.2',
version = '0.0.5',
url = 'https://github.com/ruebot/bagit-profiles-validator',
install_requires=['bagit', 'requests'],
author = 'Mark Jordon, Nick Ruest',
author_email = 'mjordan@sfu.ca, ruestn@gmail.com',
py_modules = ['bagit_profile'],
scripts = ['bagit_profile.py'],
description = description,
long_description = long_description,
long_description = open('README.rst').read(),
package_data = { '': ['README.rst'] },
platforms = ['POSIX'],
test_suite = 'test',
classifiers = [
Expand Down

0 comments on commit bdc45c5

Please sign in to comment.