Skip to content

Commit

Permalink
Few more deshablonizations. Left few Shablona mentionings as TODO poi…
Browse files Browse the repository at this point in the history
…nters
  • Loading branch information
yarikoptic committed Jul 9, 2016
1 parent ff55f4d commit 558cbe5
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 25 deletions.
3 changes: 2 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
The MIT License (MIT)

Copyright (c) 2015 Ariel Rokem, The University of Washington eScience Institute
Copyright (c) 2015-2016, Ariel Rokem, The University of Washington eScience Institute.
Copyright (c) 2016--, PyBIDS developers, Planet Earth

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
## bids
## PyBIDS
[![Build Status](https://travis-ci.org/INCF/pybids.svg?branch=master)](https://travis-ci.org/INCF/pybids)

PyBIDS is a Python library to centralize interactions with datasets conforming
BIDS (Brain Imaging Data Structure) format. For more information about BIDS
visit http://bids.neuroimaging.io .

Repository itself is based on Shablona project, so you might still find
some Shablona content, which later will be removed.

Shablona is a template project for small scientific python projects. The
recommendations we make here follow the standards and conventions of much of
the scientific Python eco-system. Following these standards and recommendations
Expand Down
2 changes: 1 addition & 1 deletion bids/tests/test_bids.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
import os.path as op
import bids

data_path = op.join(sb.__path__[0], 'data')
data_path = op.join(bids.__path__[0], 'data')


39 changes: 17 additions & 22 deletions bids/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,46 +30,41 @@
# Long description will go up on the pypi page
long_description = """
Shablona
========
Shablona is a template project for small scientific Python projects.
PyBIDS
======
PyBIDS is a Python module to interface with datasets conforming BIDS.
See BIDS paper_ and http://bids.neuroimaging.io website for more information.
It contains software implementations of an analysis of some simple data, but
more importantly, it contains infrastructure for testing, documentation,
continuous integration and deployment, which can be easily adapted
to use in other projects.
To get started using these components in your own software, please go to the
repository README_.
.. _README: https://github.com/INCF/pybids/blob/master/README.md
.. paper_: http://www.nature.com/articles/sdata201644
License
=======
``bids`` is licensed under the terms of the MIT license. See the file
``pybids`` is licensed under the terms of the MIT license. See the file
"LICENSE" for information on the history of this software, terms & conditions
for usage, and a DISCLAIMER OF ALL WARRANTIES.
All trademarks referenced herein are property of their respective holders.
Copyright (c) 2015--, Ariel Rokem, The University of Washington
eScience Institute.
Copyright (c) 2015-2016, Ariel Rokem, The University of Washington eScience Institute.
Copyright (c) 2016--, PyBIDS developers, Planet Earth
"""

NAME = "bids"
MAINTAINER = "Ariel Rokem"
MAINTAINER_EMAIL = "arokem@gmail.com"
NAME = "pybids"
MAINTAINER = "PyBIDS Developers"
MAINTAINER_EMAIL = "bids-discussion@googlegroups.com",
DESCRIPTION = description
LONG_DESCRIPTION = long_description
URL = "http://github.com/INCF/pybids"
DOWNLOAD_URL = ""
LICENSE = "MIT"
AUTHOR = "Ariel Rokem"
AUTHOR_EMAIL = "arokem@gmail.com"
AUTHOR = "Yaroslav Halchenko",
AUTHOR_EMAIL = "debian@onerussian.com",
PLATFORMS = "OS Independent"
MAJOR = _version_major
MINOR = _version_minor
MICRO = _version_micro
VERSION = __version__
PACKAGE_DATA = {'bids': [pjoin('data', '*')]}
REQUIRES = ["numpy"]
# No data for now
# PACKAGE_DATA = {'bids': [pjoin('data', '*')]}
REQUIRES = []

0 comments on commit 558cbe5

Please sign in to comment.