Skip to content

Commit

Permalink
Merge pull request AllenInstitute#30 from kaeldai/release/v0.0.6
Browse files Browse the repository at this point in the history
updating setup script
  • Loading branch information
kaeldai authored Sep 26, 2018
2 parents 81479b6 + 38247f3 commit 375f985
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ docs/tutorial/**/output/**
docs/tutorial/**/network/**
docs/tutorial/**/components/**
docs/tutorial/tutorial_tmp/**
docs/autodocs/source/bmtk/

19 changes: 14 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,20 +47,28 @@ def run_tests(self):
sys.exit(errcode)


with open('README.md', 'r') as fhandle:
long_description = fhandle.read()


setup(
name=package_name,
version=package_version,
description='Brain Modeling Toolkit',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/AllenInstitute/bmtk',
author='Kael Dai',
author_email='kaeld at alleninstitute dot org',
author_email='kaeld@alleninstitute.org',
package_data={'': ['*.md', '*.txt', '*.cfg', '**/*.json', '**/*.hoc']},
tests_require=['pytest'],
install_requires=[
'jsonschema',
'pandas',
'numpy',
'six',
'h5py'
'h5py',
'matplotlib'
],
extras_require={
'bionet': ['NEURON'],
Expand All @@ -74,13 +82,14 @@ def run_tests(self):
platforms='any',
keywords=['neuroscience', 'scientific', 'modeling', 'simulation'],
classifiers=[
'Development Status :: 3 - Alpha',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: Apache Software License :: 2.0',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Medical Science Apps.'
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Bio-Informatics'
]
)

0 comments on commit 375f985

Please sign in to comment.