forked from tsalo/convert-eprime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (24 loc) · 847 Bytes
/
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
# emacs: -*- mode: python-mode; py-indent-offset: 4; tab-width: 4; indent-tabs-mode: nil -*-
# ex: set sts=4 ts=4 sw=4 et:
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# fetch version from within gclda module
with open('convert_eprime/version.py') as f:
exec(f.read())
# fetch requirements from file
with open('requirements.txt') as f:
requirements = f.read().splitlines()
config = {
'description': 'Python tools for converting E-Prime files',
'author': 'Taylor Salo',
'url': 'https://github.com/tsalo/convert-eprime/',
'download_url': 'https://github.com/tsalo/convert-eprime/',
'author_email': '[email protected]',
'version': __version__,
'install_requires': requirements,
'packages': ['convert_eprime'],
'name': 'convert_eprime'
}
setup(**config)