-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (50 loc) · 1.35 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 -*-
"""setup.py file for marc2rf."""
# Import required modules
import re
from distutils.core import setup
# import py2exe
__author__ = 'Victoria Morris'
__license__ = 'MIT License'
__version__ = '1.0.0'
__status__ = '4 - Beta Development'
version = '1.0.0'
# Get long description by reading README.md
try:
long_description = open('README.md').read()
except:
long_description = ''
# List requirements.
# All other requirements should all be contained in the standard library
requirements = [
'regex'
]
# Setup
setup(
console=[
'bin/write_rf_config.py',
'bin/researcherFormat.py',
],
zipfile=None,
name='marc2rf',
version=version,
author='Victoria Morris',
url='https://github.com/victoriamorris/marc2rf',
license='MIT',
description='Tools for converting MARC records to Researcher Format.',
long_description=long_description,
packages=['marc2rf'],
scripts=[
'bin/write_rf_config.py',
'bin/researcherFormat.py',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python'
],
requires=requirements
)