-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (27 loc) · 774 Bytes
/
pyproject.toml
File metadata and controls
29 lines (27 loc) · 774 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "invian"
version = "0.0.1"
description="Package to analyze in vivo neural data"
readme = "README.md"
authors = [{ name = "Alex Legaria", email = "leg.alex96@gmail.com"}]
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3'
]
keywords = ["neuroscience", "electrophysiology", "research"]
dependencies = [
'pandas',
'numpy',
'scipy',
'matplotlib',
'seaborn'
]
requires-python = ">= 3.6"
[project.urls]
Home = "https://github.com/AlexLM96/invian"