Skip to content

Commit 67799ba

Browse files
author
Chaitanya CHINTALURI
committed
in prep for the pypi package
1 parent 3e4667e commit 67799ba

5 files changed

Lines changed: 35 additions & 8 deletions

File tree

.readthedocs.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# .readthedocs.yaml
2+
# Read the Docs configuration file
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
# Required
6+
version: 2
7+
8+
# Set the version of Python and other tools you might need
9+
build:
10+
os: ubuntu-22.04
11+
tools:
12+
python: "3.11"
13+
14+
# Build documentation in the docs/ directory with Sphinx
15+
sphinx:
16+
configuration: docs/source/conf.py
17+
18+
# We recommend specifying your dependencies to enable reproducible builds:
19+
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
20+
python:
21+
install:
22+
- requirements: docs/source/requirements.txt

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ BSD-3-Clause
55

66

77
Licence text
8-
Copyright (c) 2017-2023, Chintaluri et al.
8+
Copyright (c) 2019-2023, Chintaluri et al.
99
All rights reserved.
1010

1111
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

README.rst

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
Kernel Current Source Density
22
=============================
33

4-
This 2.0 version of kCSD inverse method proposed in python3
4+
This 2.0 version of kCSD method.
5+
6+
Only supported for python 3.
7+
8+
59

610
Relevant Papers
711
---------------
@@ -41,7 +45,8 @@ More information on the tutorials is provided here `Tutorials!`_
4145

4246
.. _Tutorials!: /docs/source/TUTORIALS.rst
4347

44-
To have these tutorials and saved on your desktop, you will also need jupyter-notebook installed
48+
You can also save these tutorials on your desktop, for this you will
49+
need to install jupyter-notebook. Do this by
4550

4651
.. code-block:: bash
4752
@@ -83,7 +88,7 @@ Also included here are authors and their contributions, citation policy, contact
8388

8489
Earlier Stable versions
8590
-----------------------
86-
Please see git tags for earlier versions
91+
Please see git tags for earlier versions. These are not available as packages unfortunately.
8792

8893
- v1.2 corresponds to the first time kCSD-python released as a python package
8994
- v1.0 corresponds to the version with the test cases written inside tests folder

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@
5252

5353
# General information about the project.
5454
project = 'kCSD-python'
55-
copyright = '2019, Chintaluri et.al'
56-
author = 'Chintaluri et.al'
55+
copyright = '2019-2023, Chintaluri et al'
56+
author = 'Chintaluri et al'
5757

5858
# The version info for the project you're documenting, acts as replacement for
5959
# |version| and |release|, also used in various other places throughout the

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ def readme():
3434
'Topic :: Scientific/Engineering :: Medical Science Apps.',
3535
'Intended Audience :: Science/Research',
3636
],
37-
keywords='Eletrophysiology CSD LFP MEA',
37+
keywords='Electrophysiology CSD LFP MEA',
3838
url='https://github.com/Neuroinflab/kCSD-python',
3939
author='Chaitanya Chintaluri et al',
40-
license='BSD',
40+
license='Modified BSD License',
4141
packages=find_packages(where="."),
4242
include_package_data=True,
4343
package_data={'kcsd':

0 commit comments

Comments
 (0)