-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 767 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 767 Bytes
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
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='Computational Chemistry CHIMIND, UNIBO',
description='Simulation wrapper for COBRAMM',
keywords='simphony, cuds, cobramm',
long_description=README_TEXT,
install_requires=[
'osp-core>=' + OSP_CORE_MIN + ', <' + OSP_CORE_MAX,
'numpy',
'scipy',
'matplotlib',
],
packages=find_packages(),
test_suite='tests',
entry_points={
'wrappers':
'wrapper = osp.wrappers.cobrammwrapper:CobrammSession'},
)