forked from datajoint/datajoint-python
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
35 lines (28 loc) · 1.06 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from os import path
import sys
min_py_version = (3, 5)
if sys.version_info < min_py_version:
sys.exit('DataJoint is only supported for Python {}.{} or higher'.format(*min_py_version))
here = path.abspath(path.dirname(__file__))
long_description = "A relational data framework for scientific data pipelines with MySQL backend."
# read in version number into __version__
with open(path.join(here, 'datajoint', 'version.py')) as f:
exec(f.read())
with open(path.join(here, 'requirements.txt')) as f:
requirements = f.read().split()
setup(
name='datajoint',
version=__version__,
description="A relational data pipeline framework.",
long_description=long_description,
author='Dimitri Yatsenko',
author_email='[email protected]',
license="GNU LGPL",
url='https://datajoint.io',
keywords='database organization',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=requirements,
python_requires='~={}.{}'.format(*min_py_version)
)