Skip to content

Commit

Permalink
Merge pull request #49 from unt-libraries/install-requires
Browse files Browse the repository at this point in the history
Update setup.py
  • Loading branch information
damonkelley committed Oct 30, 2015
2 parents 6c74191 + 79ce453 commit c8c5088
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 17 deletions.
3 changes: 1 addition & 2 deletions requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
lxml==3.3.0beta4
httplib2==0.8
lxml==3.0.0
codalib==1.0.0
32 changes: 17 additions & 15 deletions setup.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,25 @@
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))

setup(
name = "django-premis-event-service",
version = "1.0.0",
packages = find_packages(),
include_package_data = True,
package_data = {
'': ['*.html'],
},
install_requires = [
'lxml >= 3.0.0',
'codalib>=1.0.0'
]

# metadata (used during PyPI upload)
license = "BSD",
description = "A Django application for storing and querying PREMIS Events",
setup(
name="django-premis-event-service",
version="1.0.0",
packages=find_packages(),
include_package_data=True,
package_data={'': ['*.html']},
license="BSD",
description="A Django application for storing and querying PREMIS Events",
long_description=README,
keywords = "django PREMIS preservation",
author = "University of North Texas Libraries",
url = "https://github.com/unt-libraries/django-premis-event-service",
classifiers = [
keywords="django PREMIS preservation",
author="University of North Texas Libraries",
url="https://github.com/unt-libraries/django-premis-event-service",
install_requires=install_requires,
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: System Administrators",
Expand Down

0 comments on commit c8c5088

Please sign in to comment.