-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (32 loc) · 979 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
35
36
37
"""Install the wrapper."""
from setuptools import setup, find_packages
from packageinfo import VERSION, NAME, OSP_CORE_MIN, OSP_CORE_MAX
# Read description
with open('README.md', 'r') as readme:
README_TEXT = readme.read()
# main setup configuration class
setup(
name=NAME,
version=VERSION,
author='Material Informatics Team, Fraunhofer IWM.',
url='www.simphony-project.eu',
description='The SQLAlchemy wrapper for SimPhoNy',
keywords='simphony, cuds, Fraunhofer IWM, sqlalchemy',
long_description=README_TEXT,
install_requires=[
'osp-core>=' + OSP_CORE_MIN,
'osp-core<' + OSP_CORE_MAX,
'sqlalchemy',
'psycopg2-binary'
],
tests_require=[
"unittest2",
"coverage"
],
packages=find_packages(),
test_suite='tests',
entry_points={
'wrappers': 'simphony_sqlalchemy = osp.wrappers.'
'sqlalchemy_wrapper_session:SqlAlchemyWrapperSession'
}
)