forked from uchicago-library/uchicagoldr-premiswork
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
20 lines (19 loc) · 782 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
setup(
name = 'pypremis',
version = '1.0.0b',
url = 'https://github.com/uchicago-library/uchicagoldr-premiswork',
author = "Brian Balsamo <[email protected]>",
author_email = "[email protected]",
packages = ['pypremis'],
description = "A set of python classes for working with PREMIS records.",
keywords = ["uchicago", "repository", "file-level", "processing", "premis",
"metadata", "preservation"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Operating System :: Unix",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires = [])