-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (26 loc) · 868 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
29
30
31
32
33
34
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
import sys
min_py_version = (3, 7)
if sys.version_info < min_py_version:
sys.exit(
'Loris is only supported '
'on Python {}.{} or higher'.format(*min_py_version))
path = os.path.abspath(os.path.dirname(__file__))
long_description = 'Data management and analysis application for DataJoint'
with open(os.path.join(path, 'requirements.txt')) as f:
requirements = f.read().split()
setup(
name='lorisapp',
version='0.1.8',
description='Loris',
long_description=long_description,
author='Matthias Christenson',
author_email='[email protected]',
install_requires=requirements,
keywords='database application',
packages=find_packages(exclude=["docs", "images", "tests"]),
include_package_data=True,
scripts=['bin/lorisapp'],
)