-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (53 loc) · 1.42 KB
/
setup.py
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
# -*- coding: utf8 -*-
# Import required modules
import re
from distutils.core import setup
__author__ = 'Victoria Morris'
__license__ = 'MIT License'
__version__ = '1.0.0'
__status__ = '4 - Beta Development'
# List requirements.
# All other requirements should all be contained in the standard library
requirements = [
'regex'
]
# Setup
setup(
console=[
'bin/cn_find.py',
'bin/fix_fmt.py',
'bin/keep_fld.py',
'bin/marc_check.py',
'bin/marc_count.py',
],
zipfile=None,
options={
'py2exe': {
'bundle_files': 0,
}
},
name='catbridge_tools',
version='1.0.0',
author='Victoria Morris',
url='https://github.com/victoriamorris/CatBridge',
license='MIT',
description='Tools for working with MARC data in Catalogue Bridge.',
long_description='Tools for working with MARC data in Catalogue Bridge.',
packages=['catbridge_tools'],
scripts=[
'bin/cn_find.py',
'bin/fix_fmt.py',
'bin/keep_fld.py',
'bin/marc_check.py',
'bin/marc_count.py',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python'
],
requires=requirements
)