-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 769 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (22 loc) · 769 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from collator import __version__
setup(name='collator',
version=__version__,
packages=find_packages(),
install_requires=[
'docopt==0.6.1',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Text Processing :: Markup :: XML',
],
description='Script for collating two or more transcription files using CollateX.',
url='https://github.com/stenskjaer/collator',
author='Michael Stenskjær Christensen',
author_email='michael.stenskjaer@gmail.com',
license='MIT',
scripts=['collator.py'],
)