-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (27 loc) · 866 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (27 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python
from setuptools import setup
setup(
name='pyuntl',
version='2.0.0',
author='Mark Phillips',
author_email='mark.phillips@unt.edu',
url='https://github.com/unt-libraries/pyuntl',
license='BSD',
packages=['pyuntl'],
install_requires=[
'lxml>=3.4.4',
'rdflib>=4.2.1',
],
description='read, write and modify UNTL metadata records',
long_description='See the home page for more information.',
classifiers=[
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords=['untl', 'metadata', 'digital libraries', 'records'],
test_suite='tests'
)