forked from OpenSourceBrain/osb-model-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (27 loc) · 798 Bytes
/
setup.py
File metadata and controls
27 lines (27 loc) · 798 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
from setuptools import setup, find_packages
setup(
name='OSBModelValidation',
version='0.1.3',
author='Boris Marin',
author_email='borismarin@gmail.com',
packages=find_packages(),
entry_points={
'console_scripts': ['omv = omv.omv_util:main']},
package_data={
'omv': [
'schemata/mep.yaml',
'schemata/types/*.yaml',
'schemata/types/base/*.yaml',
'engines/utils/genesis_utils.g']},
url='https://github.com/OpenSourceBrain/osb-model-validation',
license='LICENSE.txt',
description='OpenSourceBrain Model Validation',
long_description=open('README.md').read(),
install_requires=[
'PyYAML',
'numpy',
'pyrx',
'pathlib',
'watchdog',
'docopt'],
)