forked from datajoint/datajoint-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 1.12 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
# with open(path.join(here, 'VERSION')) as version_file:
# version = version_file.read().strip()
long_description = "An object-relational mapping and relational algebra to facilitate data definition and data manipulation in MySQL databases."
setup(
name='datajoint',
version='0.1.0.dev5',
description="An ORM with closed relational algebra",
long_description=long_description,
author='Dimitri Yatsenko',
author_email='[email protected]',
license="GNU LGPL",
url='https://github.com/datajoint/datajoint-python',
keywords='database organization',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=['numpy', 'pyparsing', 'networkx', 'matplotlib', 'pymysql>=0.7.2'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: LGPL License',
'Topic :: Database :: Front-Ends',
],
)