-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 916 Bytes
/
setup.py
File metadata and controls
35 lines (31 loc) · 916 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
31
32
33
34
35
#bootstrap easy_install
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
description = \
"""
This package is used to create individual Dublin Core records from a given tabular (tsv) or comma (csv) separated file.
"""
install_requires = []
try:
import DublinCoreTerms
except ImportError:
install_requires.append('dublincore>=1.0')
setup (
name = 'md-convert',
version = '0.1.0',
url = 'https://github.com/hwidmann/MD-Convert',
author = 'Heinrich Widmann',
author_email = 'widmann@dkrz.de',
py_modules = ['DublinCoreTerms'],
scripts = ['md-convert.py'],
description = description,
platforms = ['POSIX'],
test_suite = 'test',
classifiers = [
'License :: GPLv2',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Filesystems',
],
)